S
Schorn
I am trying to create a url out of variables in a form. Here is the form:
<form action="/WebApp/stmt/CtrlServ" method="post" name="mainform">
<input type="text" size="14" maxlength="20" name="userName"
onFocus="nextElement ='password';"><br>
<span class="u_p">User Name</span><br>
<input type="password" size="14" maxlength="10" name="password"
onFocus="nextElement ='newlogin';"><br>
<span class="u_p">Password</span><br>
<div class="u_p"><a href="javascript: BrowserCheck();"
class="buttonsm">Submit</a></div>
<input type="hidden" name="command" value="" >
<input type="hidden" name="loginUserType" value="2">
<input type="hidden" name="source" value="_fas">
</form>
</td>
Assume my username=joe and my password=12345 what would the url be.
I have tried:
www.123.com/WebApp/stmt/CtrlServ/?login&username=joe&password=12345
but did not work.
Any ideas would be appreciated.
<form action="/WebApp/stmt/CtrlServ" method="post" name="mainform">
<input type="text" size="14" maxlength="20" name="userName"
onFocus="nextElement ='password';"><br>
<span class="u_p">User Name</span><br>
<input type="password" size="14" maxlength="10" name="password"
onFocus="nextElement ='newlogin';"><br>
<span class="u_p">Password</span><br>
<div class="u_p"><a href="javascript: BrowserCheck();"
class="buttonsm">Submit</a></div>
<input type="hidden" name="command" value="" >
<input type="hidden" name="loginUserType" value="2">
<input type="hidden" name="source" value="_fas">
</form>
</td>
Assume my username=joe and my password=12345 what would the url be.
I have tried:
www.123.com/WebApp/stmt/CtrlServ/?login&username=joe&password=12345
but did not work.
Any ideas would be appreciated.