MVC,从视图内部获取MasterPage路径

发布于 2024-07-15 19:25:31 字数 153 浏览 3 评论 0原文

我如何从视图内部获取母版页的路径,我认为这

((WebFormView)Html.ViewContext.View).MasterPath

可以解决问题,但不幸的是,它总是空的。

那么我怎样才能得到它呢?

How can i get the path of the MasterPage from inside a view, I tought that

((WebFormView)Html.ViewContext.View).MasterPath

would do the trick, but unfortunately, it's always empty.

so how do I get it?

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

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

发布评论

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

评论(1

ヅ她的身影、若隐若现 2024-07-22 19:25:31

我不确定您到底需要什么,但视图应该有一个 MasterPageFile 属性,其中包含 MasterPage 的相对路径。 如果您需要物理位置,可以使用 MapPath。

<%= this.MasterPageFile %>

<%= MapPath( this.MasterPageFile ) %>

I'm nto sure what you need exactly, but the View should have a MasterPageFile property that contains the relative path to the MasterPage. You can use MapPath if you need the physical location.

<%= this.MasterPageFile %>

<%= MapPath( this.MasterPageFile ) %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文