为什么@ 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>