Re: Passing values via myFile.jsp?logout=true
Posted By:
vinay_salehithal
Posted On:
Friday, February 7, 2003 09:55 AM
This method of passing data is called using "query string". In yr html form, if u set the form method as GET, the data in yr form will be passed as a query string. Additionally if u want to add some custom data, u can add it to the
Re: Passing values via myFile.jsp?logout=true
Posted By:
Adrian_K
Posted On:
Friday, February 7, 2003 05:09 AM
In yout JSP yuu have to use request.getParameter() in order to get your passed logout value...the same if you pass this value using forms (input fields).