.netCHARTING v10.5 Documentation


RegisterStartupScript Method
Registers a startup code snippet that gets placed at the bottom of the page
Syntax
'Declaration
 
Public Sub RegisterStartupScript( _
   ByVal control As Control, _
   ByVal type As Type, _
   ByVal key As String, _
   ByVal script As String, _
   ByVal addStartupTags As Boolean _
) 
'Usage
 
Dim instance As ClientScriptProxy
Dim control As Control
Dim type As Type
Dim key As String
Dim script As String
Dim addStartupTags As Boolean
 
instance.RegisterStartupScript(control, type, key, script, addStartupTags)
public void RegisterStartupScript( 
   Control control,
   Type type,
   string key,
   string script,
   bool addStartupTags
)

Parameters

control
type
key
script
addStartupTags
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also