tags:

views:

35

answers:

1

hi,

my html file having the search box and when click on search box it will go to the jsp file...

can you provide any sample code for this..

plz help me

+2  A: 
<form method="post" action="/path/to/your/file.jsp">
  <input type="submit" value="Super smart posting to JSP form" />
</form>
Dominic Rodger