Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于初学者来说,我是 MVC3 的新手,所以我的知识有限。我知道我的要求可以通过<a href="">在视图页面中硬编码来实现。但是有没有办法使用 HTML 助手(如 ActionLink 或 RouteLink)来做到这一点?
<a href="">
提前致谢。
创建具有空值作为操作和控制器参数的操作链接,并在 htmlAttributes 中添加 href = String.Empty
@Html.ActionLink("link", null, null, new { href = String.Empty })