views:

33

answers:

1

I have a .NET app running inside a Peoplesoft web portal IFrame. What I need to do is get the URL of the portal (parent) that called my .NET app. So far I've tried to get the URL inside my c# code using Request.Url.AbsoluteUri but this is not working.

I'm assuming I will have to do this in JavaScript, or is it possible to get the browser's URL inside my c# code? Thanks in advance.

A: 

Request.UrlReferrer.AbsoluteUri on the Start Page of the ASP.NET app did the trick. All is good now.

EWizard