Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

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]
# 1 Re: Help is required in hyperlink
document.getElementById("idcontrol").style = "none";

cheers!
gbavte at 2007-11-11 23:34:57 >
# 2 Re: Help is required in hyperlink
document.getElementById("idcontrol").style.visibility = "none";
gbavte at 2007-11-11 23:35:57 >
# 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 >