|
-
Feb 9th, 2001, 03:22 AM
#1
Thread Starter
Addicted Member
How can I specify the target frame in an ASP response.redirect ???
response.redirect "mypage.asp" "<TARGET = 'main'>"???????????
-
Feb 9th, 2001, 11:48 AM
#2
Frenzied Member
you cant specify a target in ASP but you can do:
if choice = blabla then
%>
<script language=javascript>
parent.frames.main.location='yourRedirection';
</script>
<%
else
%>
<script language=javascript>
parent.frames.main.location='yourRedirection';
</script>
<%
end if
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|