Hello,
I am using ASP.NET for a web application. A user picks a product which takes them to another page. The page will display more details on the product as well as a dropdownlist, which allows them to chose a specific size. Once the size is selected the "add to cart" link must be updated to reflect not only the productID but also the subproductid. I am not sure how to do this. The code on page_load is:
addToCart.NavigateUrl = "AddToCart.aspx?ProductID=" & ProductID
How do I append the subproductid once a selection has been made?
Any help would be greatly appreciated.
M.
I am using ASP.NET for a web application. A user picks a product which takes them to another page. The page will display more details on the product as well as a dropdownlist, which allows them to chose a specific size. Once the size is selected the "add to cart" link must be updated to reflect not only the productID but also the subproductid. I am not sure how to do this. The code on page_load is:
addToCart.NavigateUrl = "AddToCart.aspx?ProductID=" & ProductID
How do I append the subproductid once a selection has been made?
Any help would be greatly appreciated.
M.