Help is required in hyperlink
I want to set the value of a hidden field with clicking of a hyperlink so that i can access the value. Can anybody tell me how can I do that
OR
What should I do to set a value of a hyperlink so that i can submit it to a JSP page?
Please help me
[271 byte] By [
sudip_124] at [2007-11-11 8:20:13]

# 3 Re: Help is required in hyperlink
to submit to jsp page simply do this
<a href="processpage.jsp?Username=john">Submit</a>
When u click the link the data in username will be submitted via the url to the processpage.jsp, there u get the data and do what u want with it.
major at 2007-11-11 23:36:51 >
