ClientScriptManager::IsClientScriptIncludeRegistered Method (Type, String)
Determines whether the client script include is registered with the Page object using a key and type.
Assembly: System.Web (in System.Web.dll)
Parameters
- type
- Type: System::Type
The type of the client script include to search for.
- key
- Type: System::String
The key of the client script include to search for.
| Exception | Condition |
|---|---|
| ArgumentNullException | The client script include type is nullptr. |
Call this method before calling the RegisterClientScriptInclude method to avoid registering duplicate client script includes. This is particularly important if the script requires a large amount of server resources to create.
A client script include is uniquely identified by its key and its type. Scripts with the same key and type are considered duplicates. You specify the type based on the object that will be accessing the resource. For instance, when using a Page instance to access the resource, you specify the Page type.
The following code example demonstrates the use of the IsClientScriptIncludeRegistered method. Note that, if the logic to check for the existing client script include were removed, there would not be two duplicate client scripts in the HTML source code of the rendered page because the RegisterClientScriptInclude method checks for duplicates. The benefit of checking is to reduce unnecessary computation.
This example requires a JavaScript file named Script_include.js, with the following contents:
function DoClick() {Form1.Message.value='Text from include script.'}
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.