jQuery and ASP.NET

April 22, 2009

Referencing a .js (JavaScript) file from ASP.NET Content Page




I have seen developers adding a JavaScript reference to the Master Pages and then using the JavaScript functions in Content Pages. However, with this approach, the JavaScript is referenced in each page of the application using that MasterPage as its template. If you want to reference the JavaScript file only on one ContentPage, then here's how to do so:

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



Bookmark this link on del.icio.us (saved by 0 users)

Did you like this post?
kick it on DotNetKicks.com
subscribe via rss subscribe via e-mail
print this post follow me on twitter
Others Also Read..

comments

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

Copyright 2010 All Rights Reserved DevCurry.com by Suprotim Agarwal