Hello There,
Any help would be greatly appreciated!!
I understand that by using ? and &, we can pass parameter VALUES through URL. However, in my case, THE PARAMETER PLACEHOLDERS need to be passed instead. For example,
<input id="myId" type="text" name="myName">
...
The "myName" will have a value through user's input(code is omitted here). Now I need to pass "myName" as a placeholder (not its value) through URL:
<A HREF="Another Program.jsp?myParameter=SOMETHING">
What should SOMETHING (above) be replaced with to represent the placeholder myName? I tried $myName and it didn't work.
Thanks in advance for your help!!!
Yi