MasterPage.Master>接下来将作为子页面加载哪个页面?

发布于 2024-10-22 06:42:49 字数 373 浏览 6 评论 0原文

我想知道,在我的 MasterPage.MasterPage Load 事件中,哪个页面发送了请求。 将作为子级加载到内容。

假设用户点击我的网页Login我可以从Page Load事件中获取该值我的 MasterPage.Master 供以后处理?

Dim ThePageThatWillLoadAsChildIs as string =

你看,我想使用它,所以当请求页面是 Login.aspx 时,在我的网页的表单元素中注入一些属性。

I would like to know, in the Page Load event of my MasterPage.Master which page sent the request. will be loaded as child in the content.

Supposing, the user clicks in my webpage <a href="Login.aspx">Login</a> can i get that value from the Page Load event of my MasterPage.Master for later processing?

Dim ThePageThatWillLoadAsChildIs as string =

You see i would like to use that, so when the request page is e.x. Login.aspx, inject in the form element of my webpage some attributes.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

世界和平 2024-10-29 06:42:50

查看 Request.Url 属性并在那里获取必要的信息

Have a look at Request.Url Property and get the necessary information there

挽袖吟 2024-10-29 06:42:50

我认为您正在寻找的是 Request.UrlReferrer

I think what you are looking for is Request.UrlReferrer

栩栩如生 2024-10-29 06:42:50

好吧,这个就可以了(在母版页加载上)

Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
   Dim TheNextPageThatWillLoad As String = DirectCast(sender, MasterPage).Request.RawUrl
End Sub

Well this one does the trick (On the master page load)

Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
   Dim TheNextPageThatWillLoad As String = DirectCast(sender, MasterPage).Request.RawUrl
End Sub
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文