快问。 Html.ActionLink 和创建内部链接(#home、#about 等)
快速问题...
我怎样才能最好地创建内部链接?这是我想要实现的标记:
<h3>Title</h3>
<ul>
<li><a href="#prod1">Product 1</li>
<li><a href="#prod2">Product 2</li>
<li><a href="#prod3">Product 3</li>
...
<li><a href="#prod100">Product 100</li>
</ul>
<div id="prod1">
<!-- content here -->
</div>
Using MVC 2 I'm using, What's the best Html Helper to use?
<h3><%= Html.Encode(Model.Title) %>
<ul>
<% foreach ( var item in Model.Categories ) {%>
<li><%= Html.RouteLink( item.Description, ???? ) %></li>
<%} %>
</ul>
获取内部链接 URL 的最佳方式是什么? String.Format
从头开始的链接?一定有更好的办法。
quick question...
How can I best create internal links? This is the markup I want to achieve:
<h3>Title</h3>
<ul>
<li><a href="#prod1">Product 1</li>
<li><a href="#prod2">Product 2</li>
<li><a href="#prod3">Product 3</li>
...
<li><a href="#prod100">Product 100</li>
</ul>
<div id="prod1">
<!-- content here -->
</div>
Using MVC 2 I'm using, what's the best Html Helper to use?
<h3><%= Html.Encode(Model.Title) %>
<ul>
<% foreach ( var item in Model.Categories ) {%>
<li><%= Html.RouteLink( item.Description, ???? ) %></li>
<%} %>
</ul>
What's the best way to get a url to an internal link? String.Format
a link from scratch? There's gotta be a better way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
">
路由功能不适用于内部链接;您必须自己生成它们。
">
The routing features weren't meant for internal links; you have to generate them yourself.