<%
 String name = request.getParameter("loginname");
 String Pwd = request.getParameter("password");
 if (name!=null && Pwd!=null)
 {
     String retVal= AuthenticateLogin.CheckLogin(name,Pwd);
     out.println("retval is "+retVal);
%>
     <jsp:forward page="<%=retVal%>"/>;
<%
 }
%>

Bharat

----- Original Message -----
From: Raj S <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, September 13, 2000 5:30 PM
Subject: Forwarding problem...


> Hi,
>   I am facing a forwarding problem.
> I have to forward to another page,based on a return value from a method
> called CheckLogin()
> But when I try to do so, it does not recognize the variable returned.
> How can I ensure that <jsp:forward page="<%=retVal%>"/>;  is executed
within
> the if loop,so that it gets the required value?
>
> Any Suggestions.
>
> Part of code::
>
> String name = request.getParameter("loginname");
> String Pwd = request.getParameter("password");
> out.println("str is "+name);
> out.println("pwd is "+Pwd);
> if(name!=null&Pwd!=null)
> {
> String retVal= AuthenticateLogin.CheckLogin(name,Pwd);
> out.println("retval is "+retVal);
> }
> <jsp:forward page="<%=retVal%>"/>;
>
> Thanks,
>
> Raj
> _________________________________________________________________________
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
>
> Share information about yourself, create your own public profile at
> http://profiles.msn.com.
>
>
===========================================================================
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to