vote up 1 vote down star

I'm running an c# .net app in an iframe of an asp page on an older site. Accessing the Asp page's session information is somewhat difficult, so I'd like to make my .net app simply verify that it's being called from an approved page, or else immediately halt.

Is there a way for a page to find out the url of it's parent document?

flag

80% accept rate

3 Answers

vote up 1 vote down check
top.location.href

But that will only work if both pages (the iframe and the main page) are being served from the same domain.

link|flag
Exactly what i needed - Thanks! – SpacePenguin Sep 22 '08 at 20:22
vote up 0 vote down

Space, this URL might help you: http://geekswithblogs.net/ranganh/archive/2005/04/25/37635.aspx

link|flag
vote up 0 vote down

parent.location.href

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.