jueves, 12 de noviembre de 2009

Best Way to Register jquery and other scripts in asp.net pages

This time I want to explain the best way to register scripts in asp.net pages using the script manager. If you need to know what is the script manager go to script manager Overview.
Here the code for register.

    <asp:ScriptManager ID="ScriptManager1" runat="server">
<Scripts>
<asp:ScriptReference Path="jquery/jquery-1.3.2.js" ScriptMode="Release" />
<asp:ScriptReference Path="jquery/ui/ui.core.js" ScriptMode="Release" />
<asp:ScriptReference Path="jquery/ui/ui.datepicker.js" ScriptMode="Release" />
<asp:ScriptReference Path="jquery/jquery.jqURL.js" ScriptMode="Release" />
</Scripts>
</asp:ScriptManager>
Remeber put this code inside form tag.
any suggestion leaves a comment.
good luck.

No hay comentarios:

Publicar un comentario