ScriptReference Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the ScriptReference class.
Overloads
ScriptReference() |
Initializes a new instance of the ScriptReference class. |
ScriptReference(String) |
Initializes a new instance of the ScriptReference class by using a specified path. |
ScriptReference(String, String) |
Initializes a new instance of the ScriptReference class by using a specified name and assembly. |
ScriptReference()
Initializes a new instance of the ScriptReference class.
public:
ScriptReference();
public ScriptReference ();
Public Sub New ()
Applies to
ScriptReference(String)
Initializes a new instance of the ScriptReference class by using a specified path.
public:
ScriptReference(System::String ^ path);
public ScriptReference (string path);
new System.Web.UI.ScriptReference : string -> System.Web.UI.ScriptReference
Public Sub New (path As String)
Parameters
- path
- String
The path of the client script file relative to the Web page.
Applies to
ScriptReference(String, String)
Initializes a new instance of the ScriptReference class by using a specified name and assembly.
public:
ScriptReference(System::String ^ name, System::String ^ assembly);
public ScriptReference (string name, string assembly);
new System.Web.UI.ScriptReference : string * string -> System.Web.UI.ScriptReference
Public Sub New (name As String, assembly As String)
Parameters
- name
- String
The name of the script file that is embedded in the assembly.
- assembly
- String
The name of the assembly that contains the client script file as an embedded resource.