Product spec into any page via sqldatareader + list method

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 years ago
Trying to get product spec into cat page via dal + sqldatareader


                            List<string> SpecAttributeName = new List<string>();
                            StringBuilder sb = new StringBuilder();

                            foreach (ProductSpecificationAttribute psa in productSpecificationAttributes)
                            {

                                SpecAttributeName.Add(psa.SpecificationAttribute.LocalizedName);
                            }
      
                            rptrProductSpecification.DataSource = productSpecificationAttributes;
                            rptrProductSpecification.DataBind();

          

Has anybody had any luck with this cheers
11 years ago
What version are you doing this in?
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.