1

如何在 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,断点就会被命中。

4

1 回答 1

0

HTTP GET 被证明是不可能的。我决定重新设计解决方案。现在我执行HTTP POST以避免通过 URL 传递数据。

理想情况下,我的 URL 将是可破解的。但它是一个内部应用程序,它是客户想要的......嘿孩子,小心碎玻璃

于 2013-03-07T21:52:49.927 回答