MVC,从视图内部获取MasterPage路径
我如何从视图内部获取母版页的路径,我认为这
((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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您到底需要什么,但视图应该有一个 MasterPageFile 属性,其中包含 MasterPage 的相对路径。 如果您需要物理位置,可以使用 MapPath。
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.