How can I specify the target frame in an ASP response.redirect ???
response.redirect "mypage.asp" "<TARGET = 'main'>"???????????
Printable View
How can I specify the target frame in an ASP response.redirect ???
response.redirect "mypage.asp" "<TARGET = 'main'>"???????????
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