我的动作链接是
<a href="@Url.Action("Edit", "UserProfile", new { id= Server.UrlEncode(item.UserCd) })"</a>
样品 ID= 测试\西蒙
使用编码,我的网址将如下所示
http://localhost/Home/UserProfile/Edit/Testing%5Simon
它在显示中工作正常,但是当点击提交时,页面提示HTTP Error 404.0 - Not Found,我检查了错误,它看起来像 web 已经改变了它获取数据的方式
Requested URL http://localhost:80/Home/UserProfile/Edit/Testing/Simon
我无法调试它,因为它永远不会进入控制器方法
如何应对这件事?