How to take button name as a variable in JSP/HTML webpages?

Jonathan

New member
Im making my first ever website using JSP that simulates an on-line auction site. If I have a product's name I want to make it a link that takes you to its auction page. How do I get the name of the product as a a variable for my auction.jsp page when it is called so its unique auction page can be dynamically created? Sorry if this doesn't make sense and thanks for any help.
 
think this will help you:<FORM>
<INPUT TYPE="BUTTON"
VALUE="CLICK ME"
ONCLICK="window.location.href='www
.mysite.com'">
</FORM>
 
Back
Top