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.
Il y a 11 ans
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
Il y a 11 ans
What version are you doing this in?
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.