Contents of firstasp.asp:
<html> <body> <Table border="1"> <tr><td valign='middle' bgcolor='#999999'><img src="captsm.gif"></td> <td valign='middle' bgcolor='#999999'><center><font color="#ffffff"><font face="Comic Sans MS"> <br> First example pass counter<br> </td></tr></table> <P> <form name="fred" action="firstasp.asp" method="GET"> <% current_token=request.querystring("token") response.write "<p>Value of token received =" +cstr(current_token)+"<--- on this pass" if current_token = "" then response.write "<input type='hidden' name='token' value='1'>" else if current_token="1" then response.write "<input type='hidden' name='token' value='2'>" else if current_token="2" then response.write "<input type='hidden' name='token' value='3'>" else if current_token="3" then response.write "<input type='hidden' name='token' value='4'>" else if current_token="4" then response.write "<input type='hidden' name='token' value='5'>" else if current_token="5" then response.write "<input type='hidden' name='token' value='6'>" else if current_token="6" then response.write "<input type='hidden' name='token' value='6'>" response.write "<P>No more token changes" end if end if end if end if end if end if end if %> <p> <input type="submit" value ="next pass"> </form> </body> </html>
***** end of file *** printed: 53 lines on: 11/23/2009 6:06:04 AM