View Single Post
  #1 (permalink)  
Old 11-28-2009, 08:21 AM
systech44 systech44 is offline
Member
 
Join Date: Nov 2009
Posts: 2
Rep Power: 0
systech44 is on a distinguished road
Question Redirect To Same Page
Hello,

I have been stuck by a serious situation. I wish to redirect my page to the same page. In my JSP page's form action property page I like to mention the same page name.

We can do the same in PHP page like below.

PHP syntax
<form name="f" method="post" action="<?php echo $_SERVER["PHP_SELF"] ?>">
...............
...............
</form>

How is it possible to do the same in the JSP page ? I am using JSP with the Servlet in MVC framework.

Please help. Thanks a lot in advance.

Thanks & Regards.
Reply With Quote