Mayfield Global Knowledge Center

Google

View Questions by Category

Category Icon C# (0)

Category » ASP.NET 2.0rss button

There were 3 questions found in this category:

  1. questionHow do I add my custom Javascript files to ASP.NET AJAX enabled website?
    In your .aspx file add a script manager control with a reference to your javascript file: <asp:ScriptManager ID="ScriptManager1" runat="server"> <Scripts> <asp:ScriptReference Path="MyJavaScriptFile.js" /> </Scripts></asp:ScriptManager> If you are using master pag ...
  2. questionHow do I apply a global theme to my ASP.NET site?
    Ensure that you have installed Microsoft Visual Web Developer Express or Visual Studio 2005 before proceeding. Open the desired web site project in Microsoft Visual Web Developer Express or Visual Studio 2005. From the Solution Explorer pane, right click on your project name then click Add ASP ...
  3. questionI am utilizing master pages in my ASP.NET AJAX enabled web site. How do I load my custom JavaScript files when needed?
    If you are using ASP.NET 2.0 master pages and utilizing ASP.NET AJAX framework, you may want to include the ScriptManager control on your master page instead of on individual pages. However when referencing other JavaScript files, you may run into problems. You would also need to reference all ...