Hi
I have a small problem.
I have 3 servlets - Login, FormEdit and ListEdit
In the Login servlet, I generate a form where I get the user name and password and have a radiobutton (2 buttons)option .
I use the username/password to generate the dir  for the user and the radiooption to determine the servlet to be called.
If (1) FormEdit
else ListEdit.

I would like to know how I can invoke the servlets(FormEdit/ListEdit) accordingly and also pass them the dir value.
Thanx in advance
---Chainlu

===============================================================================================
 

<TR ALIGN="CENTER">
 <TD><INPUT TYPE=Text NAME="user" SIZE="15" MAXLENGTH="14" onBlur="if(this.value=='')this.focus()"></TD>
<input TYPE="HIDDEN" NAME="" VALUE="">
<input TYPE="HIDDEN" NAME="" VALUE="">
<input TYPE="HIDDEN" NAME="" VALUE="1">
<input TYPE="HIDDEN" NAME="" VALUE="">

        <TD ><INPUT TYPE=PASSWORD NAME="password" SIZE="15" MAXLENGTH="14" ></TD>
 
</TR>
<TR>
        <TR><td><input type=hidden name=" " value ="   "></TD>
</TR>
<TR ALIGN="CENTER">
        <TD><FONT FACE="Arial, Helvetica" SIZE="2"><B>Name</B></FONT></TD>
        <TD><FONT FACE="Arial, Helvetica" SIZE="2"><B>Password</B></FONT></TD>
</TR>

<TR ALIGN="CENTER">
        <TD height=30><input type=radio name="Edit" value=1 checked><FONT FACE="Verdana, Arial, Helvetica" SIZE="2">Single Edit</FONT></TD>
                <TD><input type=Radio name="Edit" value=0  ><FONT FACE="Verdana, Arial, Helvetica" SIZE="2">List Edit</FONT></TD>
</TR>
 
  ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to