show/hide this revision's text 2 added 271 characters in body

Try:

<asp:ScriptManager ID="ScriptManager1" runat="server">
    <Scripts>
        <asp:ScriptReference Path="~/jquery.js" />
    </Scripts>
</asp:ScriptManager>

EDIT:

If you REALLY need this in your <head> section, you could do something like:

<script type="text/javascript" src="<%= Page.ResolveClientUrl("~/jquery.js") %>"></script>
show/hide this revision's text 1

Try:

<asp:ScriptManager ID="ScriptManager1" runat="server">
    <Scripts>
        <asp:ScriptReference Path="~/jquery.js" />
    </Scripts>
</asp:ScriptManager>