在 ASP.NET MVC MasterPage 视图中以编程方式应用样式
在我的 MVC Web 应用程序中实现以下目标的最佳/最合适的方法是什么?
我有一个名为 Site.Master 的视图(这是我的 MasterPage 视图),在该视图的顶部,我有 5 个链接,它们充当我的主站点导航,例如
<ul>
<li><a href="">Home</a></li>
<li><a href="">Links</a></li>
<li><a href="">Contact Us</a></li>
...etc
</ul>
我想要的是能够突出显示适当的文本链接,根据用户当前正在查看网站的哪个部分,因此,如果他们使用“联系我们”页面,则母版页视图上的“联系我们”链接将应用不同的 css 样式。
在 Web 窗体中,我的每个链接都是一个 HyperLink 控件,并且我在 MasterPage 后面的代码中有一个属性,因此将相关的 CssStyle 分配给每个 HyperLink 控件。
现在我正在使用 MVC,在 MasterPage 视图中实现相同目标的最佳方法是什么?
What would be the best/most suitable way to achieve the following in my MVC web application ?
I have a view called Site.Master (it's my MasterPage view), and across the top of this view, I have 5 links, which act as my main site navigation e.g.
<ul>
<li><a href="">Home</a></li>
<li><a href="">Links</a></li>
<li><a href="">Contact Us</a></li>
...etc
</ul>
What I want is to be able to highlight the appropriate text link, according to which part of the site the user is currently viewing, so if they were using the 'Contact Us' page, the Contact Us link on the master page view would have a different css style applied to it.
In Web Forms, each of my links was a HyperLink control, and I had a property in the code behind of the MasterPage so assign the relevant CssStyle to each HyperLink control.
What would be the best way to achieve the same thing in my MasterPage view, now I'm using MVC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可能会编写一个 html 帮助器,它将生成这些菜单链接,并根据当前控制器和操作将 css 类
current
应用于锚点:然后在我的视图中使用这个帮助器:
然后就是这样左边是在 CSS 文件中定义这个
current
类以突出显示:I would probably write an html helper which will generate those menu links and based on the current controller and action will apply a css class
current
to the anchor:And then use this helper in my view:
Then all that's left is to define this
current
class in a CSS file to highlight: