This line doesn't work, no big surprise, but I really need to pass the ProdID along with the input text in the form, Anyone know how it can be done? <form name="Item" action="EditItem.asp?ProdID=80515" method="Post"> Code (markup):
How about this? <form name="Item" action="EditItem.asp" method="Post"> <input type=hidden name=ProdID value=80515> </form> Code (markup):
You're trying to a pass a GET querystring with a method of POST. helpbeam's solution is what you want to do.
just set method = get and its will work. or make a hidden input with the same name. as above. when ever working with forms, try to avoid using ? in action