查询字符串参数长度问题。 Http错误400

时间:2015-07-25 08:48:45

标签: .net asp.net-mvc iis webserver windows-server-2008

任何人都可以告诉我我的网址问题: - http://www.advantarealty.net/Search//Condo,Single-Family-Home,Townhome_PropertyType/True_ForMap/8_Zoom/-81.3043212890625T29.099376992628493,-80.88134765625T28.9120147012556,-80.826416015625T28.41555985166584,-81.1669921875T28.033197847676377,-81.6888427734375T28.033197847676377,-82.1392822265625T28.222130007158537,-82.2601318359375T28.584521719370418,-82.1612548828125T28.92163128242129,-81.9305419921875T29.257648503615542,-81.6339111328125T29.248063243796576,-81.6064453125T28.849485201023,-81.3043212890625T29.099376992628493_Polygon/

我总是低于错误。

错误请求 - 无效网址。 HTTP错误400.请求网址无效。

在上面的网址中,我猜它超出了最大查询字符串参数长度,所以我尝试增加它,如下所示。

<system.web>
    <!--<httpRuntime maxQueryStringLength="32768" maxUrlLength="65536"/>-->
    <httpRuntime targetFramework="4.5" maxUrlLength="2097151" relaxedUrlToFileSystemMapping="true" maxQueryStringLength="2097151" />
</system.web>
<system.webServer>
    <security>
      <requestFiltering>
        <requestLimits maxUrl="40960" maxQueryString="2097151" />
      </requestFiltering>
    </security>
  </system.webServer>

我试过了 request exceeds the configured maxQueryStringLength when using [Authorize]

How to configure the web.config to allow requests of any length

1 个答案:

答案 0 :(得分:0)

您的网址中有正斜杠,似乎不属于您。如果你替换

&#34; http://www.advantarealty.net/Search//Condo,Single-Family-Home,Townhome_PropertyType/True_ForMap/8_Zoom/ ...&#34;

&#34; http://www.advantarealty.net/Search/Condo,Single-Family-Home,Townhome_PropertyType,True_ForMap,8_Zoom,&#34;

您将拥有有效的网址。我通过复制你的问题中的URL并替换那些无关的&#34; /&#34; s来证明这一点。

相关问题