Does anyone know how to set your target frame using the Response.Redirect command?
Here is the code in question, from the "login b4 access to forum thread" I want the end result to load the page in the whole window not the current frame.
Can someone tell me what I need to do to modify the Response.Redirect command to accomplish this? I have looked thru my Javascript nutshell book but can't find anything to help me.
TIA!
<%'Contents of "inc_requirelogin.asp"'Require login to even see the boardif Not len( Request.Cookies(strUniqueID & "user")("name") ) > 0 thenResponse.Redirect("register.asp")end if%> <html><body> <br><br><br><br> <b><font size="2" face="verdana">Login <%= strLabel %></font></b> <hr> <form method="post" action="default.asp?f=chk"> Login:<br> <input type="text" size="10" name="name"><br><br> Pass:<br> <input type="password" size="10" name="password"><br><br> <input type="submit" name="submit" value="login"> </form><br><br><br> </body> </html> <% Response.Flush Response.Endend if%>
Bill Kramer Director of Technology Services Systemedics, Inc.