I would like to use the Response.Redirect outside the frame that I am currently working in. I would like to update two frames at the same time upon login. How do I use the Response.Redirect to do this
Response.Redirect tells the browser that you are redirecting it to another webpage. This function has no Target feature and therefore, cannot do what you are asking. However, you may be able to use the first page to load the second by using something as follows:
<script language=vbscript>
function LoadPage()
parent.frames("FrameName".location.href = "Someasp.Asp"
end function
</script>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.