I have an ASPX page that redirects to a page that has an IFRAME which requests an ASP page on an entirely different domain. Once I’m done doing what I need to do there, I need to get back to the original ASPX page.
Is there anyway to do this? history.goback(-1) does not work as it just refreshes the IFRAME. Any suggestions?
You might consider includind a copy of the referer header as the HREF of an anchor in the outer page holding the IFrame. Clicking this link would return to the referer.
This may not work in all circumstances. Browsers can be configured to not provide a referer.