Forum: JSP Jun 3rd, 2009 |
| Replies: 8 Views: 576 For this you have to send data from HTML to the server by sending HTTP request to server.
You can use <form> to submit data to server (.jsp file). In jsp you can do database interaction using... |
Forum: JSP Jun 19th, 2008 |
| Replies: 7 Views: 2,952 Actually icorey is also correct. If u have to display static HTML its good to write in icorey way. |
Forum: JSP Jun 19th, 2008 |
| Replies: 7 Views: 2,952 put this in in your JSP page:
<%=
"function submit_form_with_parameters(strFormName, strAction, parameters){
objForm = eval(\"document.\" + strFormName);
objForm.action = strAction + \".do?\"... |