PageParser.EnableLongStringsAsResources Property

Definition

Gets or sets a value that indicates whether ASP.NET should optimize its internal handling of long strings that are encountered when ASP.NET parses a page or control.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 static property bool EnableLongStringsAsResources { bool get(); void set(bool value); };
public static bool EnableLongStringsAsResources { get; set; }
static member EnableLongStringsAsResources : bool with get, set
Public Shared Property EnableLongStringsAsResources As Boolean

Property Value

true if ASP.NET should optimize its internal handling of long strings; otherwise false.

Remarks

By default, the ASP.NET page parser converts literal strings that contain 256 or more characters into a temporary resource string. This property can be set to false in order to disable this behavior and instead to write the literal string directly to the response stream. This property can only be set in the Global.asax file before the PreApplicationStart event occurs. This property can be read at any time.

Applies to