當您選擇在ASP.NET Web窗體項目新建> Web窗體,你會得到一個頁面,這個代碼:如何將jQuery UI代碼添加到ASP.NET Web窗體頁面?
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DuckbilledPlatypus.aspx.cs"
Inherits="DuckbilledPlatypus" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>
添加jQuery代碼是毫無疑問的完成是典型的相同方式(如,在Razor /網頁應用/網站中),即引用必要的jQuery和jQueryUI * .js和* .css文件,然後將jQuery添加到腳本元素中。
然而,所提供的表格/頁( 「關於」 和 「聯繫」)有這種代碼:
<%@ Page Title="About" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true"
CodeFile="About.aspx.cs" Inherits="About" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<h2><%: Title %>.</h2>
<h3>Your application description page.</h3>
<p>Use this area to provide additional information.</p>
</asp:Content>
如何被添加到這樣的jQuery/jQueryUI的代碼? * .js和* .css引用以及腳本部分是否可以簡單地添加到asp:Content封裝中?
把'script'放在頁面底部好得多,這是一個好習慣。 –