在 PeopleSoft IFrame 中运行的 ASP.NET 应用程序 - 问题
我有一个 .NET 应用程序在 Peoplesoft Web 门户 IFrame 内运行。 我需要做的是获取调用我的 .NET 应用程序的门户(父级)的 URL。 到目前为止,我已尝试使用 Request.Url.AbsoluteUri 获取 C# 代码中的 URL,但这不起作用。
我假设我必须在 JavaScript 中执行此操作,或者是否可以在我的 C# 代码中获取浏览器的 URL? 提前致谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASP.NET 应用程序起始页上的 Request.UrlReferrer.AbsoluteUri 就达到了目的。
现在一切都很好。
Request.UrlReferrer.AbsoluteUri on the Start Page of the ASP.NET app did the trick.
All is good now.