共用方式為


HttpRuntimeSection.MaxQueryStringLength 屬性

定義

取得或設定 HTTP 要求中查詢字串的最大可能長度 (以字元數為單位)。

public:
 property int MaxQueryStringLength { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("maxQueryStringLength", DefaultValue=2048)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int MaxQueryStringLength { get; set; }
[<System.Configuration.ConfigurationProperty("maxQueryStringLength", DefaultValue=2048)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.MaxQueryStringLength : int with get, set
Public Property MaxQueryStringLength As Integer

屬性值

查詢字串的最大長度,以字元數為單位。 預設值為 2048。

屬性

備註

屬性的值 MaxQueryStringLength 可以是任何整數、零或更大。 如果查詢字串的長度超過大小限制,ASP.NET 傳 HTTP 400 回 (不正確的要求) 狀態碼。

注意

非常小的值可能會讓網站無法使用。

您可以藉由設定 專案的 屬性 httpRuntime ,在組態檔中設定 maxQueryStringLength 此值。 如需詳細資訊,請參閱 HTTPRuntime 元素 (ASP.NET 設定架構)

注意

另外還有一個 IIS 設定可控制查詢字串長度。 maxQueryString請參閱要求限制 < requestLimits >中的 屬性。

適用於