ClientScriptManager::RegisterStartupScript Method (Type, String, String, Boolean)
Registers the startup script with the Page object using a type, a key, a script literal, and a Boolean value indicating whether to add script tags.
Assembly: System.Web (in System.Web.dll)
public: void RegisterStartupScript( Type^ type, String^ key, String^ script, bool addScriptTags )
Parameters
- type
- Type: System::Type
The type of the startup script to register.
- key
- Type: System::String
The key of the startup script to register.
- script
- Type: System::String
The startup script literal to register.
- addScriptTags
- Type: System::Boolean
A Boolean value indicating whether to add script tags.
| Exception | Condition |
|---|---|
| ArgumentNullException | type is nullptr. |
A startup script is uniquely identified by its key and its type. Scripts with the same key and type are considered duplicates. Only one script with a given type and key pair can be registered with the page. Attempting to register a script that is already registered does not create a duplicate of the script.
Call the IsStartupScriptRegistered method to determine whether a startup script with a given key and type pair is already registered and avoid unnecessarily attempting to add the script.
In this overload of the RegisterStartupScript method, you can indicate whether the script provided in the script parameter is wrapped with a <script> element block by using the addScriptTags parameter. Setting addScriptTags to true indicates that script tags will be added automatically.
The script block added by the RegisterStartupScript method executes when the page finishes loading but before the page's OnLoad event is raised. The script blocks are not guaranteed to be output in the order they are registered. If the order of the script blocks is important, use a StringBuilder object to gather the scripts together in a single string, and then register them all in a single client script block.
The following code example demonstrates the use of the RegisterStartupScript method. Note that the addScriptTags parameter is set to false so the beginning and closing script tags are included with the script parameter.
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.