| Author |
URL - re writing
|
ramchander yshetti
Ranch Hand
Joined: Apr 22, 2006
Posts: 97
|
|
hai, would you please tell me about url-rewriting. and please give me a sample program on it,so that i can demonstrate it. hava a nice day..
|
 |
Kannan TKannan
Greenhorn
Joined: Jul 20, 2006
Posts: 5
|
|
Consider a servlet which accepts 2 parameters. You need to invoke this servlet when the user clicks the hyperlinke "CallServlet". Now on clicking this "CallServlet" hyperlink that CallServlet.java should be invoked. This "CallServlet" takes 2 input parameters. To pass those 2 input parameters you can use url re-writing. For ex res.sendRedirect("CallServlet?param1=value1¶m2=value"); So here CallServlet url is appended with param1=value1¶m2=value2.
|
 |
 |
|
|
subject: URL - re writing
|
|
|