Page.IsClientScriptBlockRegistered Method (String)
Determines whether the client script block with the specified key is registered with the page.
Assembly: System.Web (in System.Web.dll)
[<ObsoleteAttribute("The recommended alternative is ClientScript.IsClientScriptBlockRegistered(string key). http://go.microsoft.com/fwlink/?linkid=14202")>] member IsClientScriptBlockRegistered : key:string -> bool
Parameters
- key
-
Type:
System.String
The string key of the client script to search for.
Call this method before calling Page.RegisterClientScriptBlock to avoid unnecessarily assembling the client-side script. This is particularly important if the script requires a large amount of server resources to create.
The IsClientScriptBlockRegistered method has been deprecated. Use the IsClientScriptBlockRegistered method in the ClientScriptManager class.
The following code example demonstrates the use of the RegisterClientScriptBlock method in conjunction with the IsClientScriptBlockRegistered method. If the ECMAScript written in the code declaration block has not already been registered, as determined by IsClientScriptBlockRegistered, then a RegisterClientScriptBlock call is made.
Available since 1.1