Loads JavaScript functions as Startup Scripts to the client.
Syntax
'Declaration
Public Sub LoadClientStartupScripts( _
ByVal As String, _
ByVal As String, _
ByVal As Type, _
Optional ByVal As Boolean _
)
'Usage
Dim instance As CyberStoreBaseControl
Dim ClientScript As String
Dim RegisteredScriptName As String
Dim RegisteringControlType As Type
Dim minify As Boolean
instance.LoadClientStartupScripts(ClientScript, RegisteredScriptName, RegisteringControlType, minify)
public void LoadClientStartupScripts(
string ,
string ,
Type ,
bool
)
Parameters
- ClientScript
- The client script.
- RegisteredScriptName
- Name of the registered script.
- RegisteringControlType
- Type of the registering control.
- minify
- (Optional) True to minify.
See Also