如何在 URL 中允许多个句点?
示例网址:
http://mylocalhost:6968/MyHome/Edit/ABCD.Applications.ClinicalData%257cCache_Timeout
我试过了:
各种网址编码:
@{
//string encodedItem = Url.Encode(item.Key);
//string encodedItem = HttpUtility.UrlEncode(item.Key);
string encodedItem = Server.UrlEncode(item.Key);
}
添加路由处理程序:
<add name="UrlRoutingHandler" type="System.Web.Routing.UrlRoutingHandler, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" path="Remote.mvc/*" verb="GET"/>
修改web.configsystem.web
<httpRuntime relaxedUrlToFileSystemMapping="true" />
这些事情都没有更正示例 URL。
相关代码
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.Key)
</td>
<td>
@Html.DisplayFor(modelItem => item.Value)
</td>
<td>
@Html.DisplayFor(modelItem => item.IsActive)
</td>
<td>
@{
//string encodedItem = Url.Encode(item.Key);
//string encodedItem = HttpUtility.UrlEncode(item.Key);
string encodedItem = Server.UrlEncode(item.Key);
}
@Html.ActionLink("Edit", "Edit", new { id = encodedItem }) |
@Html.ActionLink("Details", "Details", new { id = encodedItem }) |
@Html.ActionLink("Delete", "Delete", new { id = encodedItem })
</td>
</tr>
}
我正在单击编辑链接。
我也试过
@Html.ActionLink("Edit", "Edit", new { id = item.Key })
其 html 输出为:
a href=/MyHome/Edit/ABCD.Applications.ClinicalData%7CCache_Timeout
单击此链接会导致错误:
HTTP Error 404.0
我在Controller.Edit
. 断点永远不会被击中。任何时候我有一个形式的网址:
http://mylocalhost:6968/MyHome/Edit/ABCD.X
如果 X 是 a 之后的任何内容,.
则会发生此错误。如果我删除 X,断点就会被命中。