PageParser.EnableLongStringsAsResources Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.