Hello,
My shopping cart program gets product information using hidden form elements with specific names for each piece of information. For instance, a hidden element with the name "Item" would take the value of whatever name you want to call your product. The name of the form element has to be one that the program accepts, I cannot change these names. This is okay for manually entering the information, but I want to use ASP to enter the information for me. However, when I make a hidden form element and I want to bind it to the appropriate field in the database, Go Live makes the field name from the database the name of the form element and appends an to the end. So, if the database field is "productname" the form elment becomes "productname" and I can't change it to "Item" like it should be. Is there a way where I can make the form element name whatever I want when I am dynamically binding it to the database field?
My shopping cart program gets product information using hidden form elements with specific names for each piece of information. For instance, a hidden element with the name "Item" would take the value of whatever name you want to call your product. The name of the form element has to be one that the program accepts, I cannot change these names. This is okay for manually entering the information, but I want to use ASP to enter the information for me. However, when I make a hidden form element and I want to bind it to the appropriate field in the database, Go Live makes the field name from the database the name of the form element and appends an to the end. So, if the database field is "productname" the form elment becomes "productname" and I can't change it to "Item" like it should be. Is there a way where I can make the form element name whatever I want when I am dynamically binding it to the database field?