Hi I want to forward my Jsp page to a servlet on clicking a button in the form in that Jsp page.Help how to do this. Thanx Swamy
Tony Alicea
Desperado
Sheriff
Joined: Jan 30, 2000
Posts: 3219
posted
0
One has to know HTML as well as Java to do JSPs correctly. How do you tell a <FORM> what to do when it's submitted? By specifying the resource URL action in the ACTION = "..." attribute. It could be the URL for a CGI script, another JSP or (drum roll...) a Servlet!
Tony Alicea Senior Java Web Application Developer, SCPJ2, SCWCD
k swamy
Greenhorn
Joined: Jul 31, 2001
Posts: 14
posted
0
Hi I asked for how to use jsp:forward on clicking a button.I know how to forward to another jsp using form action.But i dont want this.Help in this.
Dmitriy Pavlyuk
Ranch Hand
Joined: Mar 25, 2001
Posts: 33
posted
0
Hi Clicking button is a client-level event, but jsp:forward is server proccessed. And you can't call jsp page by button on the page without sending form (or other request) to your server.