| |
rwimer618
Posts: 1
Score: 0
Joined: 4/25/2005
From: USA
Status: offline
|
I am writing a asp program that starts on my page then verifies at another page on another website then comes back to my page. I am sending information to the other site user_id,user_password and User_Account. Then this information comes back to my page adding verified or notverified and also my strings. One of the problems I am having is when I go to a second verification my fields that I filled with the return strings are not submitting on the second time around. I also need to a count to this but I am not sure where to begin. Please help anyone. Below is the code: <% strKey=Request.QueryString("response") strUser = Request.QueryString("user_id") strPaswword = Request.QueryString("user_password") strUserAccount = Request.QueryString("User_Account") strAmount = Request.QueryString("user_amt") %> <div align="center"> <table width="505" border="0" cellpadding="0" cellspacing="0"> <!--DWLayoutTable--> <tr> <td width="84" rowspan="3" valign="top"> <td width="327" height="37" valign="middle"><font size="3" face="Verdana, Tahoma"> <strong>Anywhere Recharge </strong> <% if strKey = "verified" then Response.Redirect "comersus_addItem.asp?idProduct=5&idOptions=6&quantity=1" Else If count = 1 Then count = count + 1 Response.Write %><BR><BR><font size="2" face="Verdana, Tahoma">You must register in <a href="http://208.51.238.4:88/registerme.aspx">My Account</a><BR>to get your <b>User ID and Password</b> or<BR>call customer service at 800-348-5322<BR><BR>Please make sure you retype all information correctly.</font> </font></td> <td width="94" rowspan="3" valign="top"><!--DWLayoutEmptyCell--> </td> </tr> <form action="http://65.188.99.26/comersus6f/store/awValidate.asp?user_id=<%=Request.Form("user_id")%>&user_password=<%=Request.Form("user_password")%>&User_Account=<%=Request.Form("User_Account")%>" method="post" name="form1"> <input type="hidden" name="count" value=1> <tr> <td height="165" align="left" valign="bottom"> <br> <font size="2" face="Verdana, Tahoma">User Id:</font> <input name="user_id" type="text" id="user_id" value="<%= strUser%>" size="16" maxlength="16"> <br> <br> <font size="2" face="Verdana, Tahoma"><Label>Password:</Label></font> <input name="user_password" type="password" id="user_password" value="<%= strPassword%>" size="16" maxlength="16"> <br> <br> <font size="2" face="Verdana, Tahoma"><label>Account Number:(Pin #)</label></font> <input name="User_Account" type="text" value="<%= strUserAccount%>" id="User_Account" size="15" maxlength="12"> <br> <br> <font size="2" face="Verdana, Tahoma"><label>Recharge Amount:</label></font> <select name="user_amt"> <option value="<%= strAmount%>"><%= strAmount%></option> </select> <br> <br> <br> </tr> <tr> <td height="31" align="right" valign="bottom"> <input type="submit" name="Submit" value="Verify"> </tr> <tr> <td height="11" valign="top"> <td> <td></td> </tr> </form> <%End If%> </table> <!--#include file="footer.asp"-->
_____________________________
Robert M. Wimer
|
|