* default.asp <% Const n = 4 If len(Session("i")) < n Then Response.Redirect "second.asp" End If %> <HTML> <HEAD> <TITLE>Test "Response.Redirect" su "Internet Explorer 7"</TITLE> </HEAD> <BODY> <% = Session("i") %> </BODY> </HTML>
*second.asp <% Session("i") = Session("i") & "X" Response.Redirect "default.asp" %>