@ Url.Action在MVC中呈现页面后显​​示不必要的参数值

时间:2018-11-21 05:42:25

标签: asp.net asp.net-mvc-5 html-helper url.action

为什么@ Url.Action在标记上生成浏览器的URL? 我的本地浏览器网址是 http://localhost:26377/Users/details/1

我想删除从@ Url.Action自动生成的不必要的参数。 我的代码是

<a href="@Url.Action("details", "Users")" class="btn btn-light  add-new">Add</a>

呈现页面后显​​示

<a href="/Users/details/1" class="btn btn-light  add-new">Add</a>

预期结果:

<a href="/Users/details" class="btn btn-light  add-new">Add</a>

0 个答案:

没有答案