2011-11-02 76 views
0

我在我的asp.net mvc3應用程序中的web.config文件中進行了以下配置。maxQueryStringLength爲256個字符引發異常

<system.web> 

<httpRuntime requestValidationMode="4.0" maxUrlLength="6000" 

maxQueryStringLength="6000" relaxedUrlToFileSystemMapping="true" /> 

</system.web> 

不過我收到以下錯誤maxQueryStringLength = 256

查詢字符串的該請求的長度超過配置maxQueryStringLength值。

需要幫助。

感謝, 哈里什

回答