|
|
C#
protected void Page_Load(object sender, EventArgs e)
{
Page.ClientScript.RegisterClientScriptInclude("onlyone", ResolveUrl(@"Scripts\SomeScript.js"));
if (!Master.Page.ClientScript.IsStartupScriptRegistered("MS"))
{
Master.Page.ClientScript.RegisterStartupScript
(this.GetType(), "MS", "SomeMethodJS();", true);
}
}
VB.NET
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
Page.ClientScript.RegisterClientScriptInclude("onlyone", ResolveUrl("Scripts\SomeScript.js"))
If (Not Master.Page.ClientScript.IsStartupScriptRegistered("MS")) Then
Master.Page.ClientScript.RegisterStartupScript(Me.GetType(), "MS", "SomeMethodJS();", True)
End If
End Sub
'Like' us on our FaceBook page if you find this blog useful. Thanks!
Did you like this post?
|
|
|
||
|
|
|
|
Save on Delicious |
|
|
subscribe via rss |
|
subscribe via e-mail |
|
|
print this post |
|
follow me on twitter |





comments
0 Responses to "Referencing a .js (JavaScript) file from ASP.NET Content Page"Post a Comment