vote up 0 vote down star

Hai guys, How to include inline jquery scripts used in an aspx to a separate js file with asp.net master pages

flag

You might want to accept a few answers, improving your acceptance rate to repay the kindness of others – Kane Oct 31 at 8:38
Could you be more specific? It sounds like you want to move your JavaScript to a separate file and then add a source link to it in your master file. Could you provide sample code? Also, as Kane mentioned, your 7% acceptance level means a lot of people aren't going to bother answering your question because it appears you don'y bother accepting answers. Please visit your previous questions in your profile and select answers by clicking the tick next to the best answer. – Bernhard Hofmann Oct 31 at 9:03

1 Answer

vote up 0 vote down check

Your masterpage can have a script link to the core Jquery file:

<html>
<head runat="server" >
    <title>Master page title</title>
    //link to Jquery script
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <asp:contentplaceholder id="Head" runat="server" />
</head>
<body>
.
<asp:contentplaceholder id="Main" runat="server" />
.
</body>

ASPX page can have other script links specific to the page only

<% @ Page Language="C#" MasterPageFile="~/Master.master" Title="Content Page 1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="Head" Runat="Server">
    //other scripts specific to this page only
    <script type="text/javascript" src="js/jquery.plugin.abc.js"></script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="Main" Runat="Server">
    Main content.
</asp:Content>

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.