使用 ASP+ DataGrid 控件来创建主视图/详细资料视图__教程 |
|
日期:2007-5-20 1:22:40 人气:159 [大 中 小] |
|
|
|
type="string" minOccurs="1" maxOccurs="1"></element> <element name="pubdate" type="timeInstant" minOccurs="1" maxOccurs="1"></element> </complexType> <unique name="TitleConstraint" msdata:PrimaryKey="True"> <selector>.</selector> <field>title_id</field> </unique> <key name="AuthorTitle"> <selector>../Author</selector> <field>au_id</field> </key> <keyref refer="AuthorTitle"> <selector>.</selector> <field>au_id</field> </keyref> </element> </schema> <DocumentElement> <Author> <au_id>154-00-1300</au_id> <au_name>John Doe</au_name> <phone>425 705 1234</phone> <address>One Microsoft Way</address> <city>Redmond</city> <state>CA</state> <zip>98005</zip> </Author>
<Title> <title_id>BU1032</title_id> <au_id>213-46-8915</au_id> <title>The Busy Executive's Database Guide</title> <price>19.99</price> <pubdate>1991-06-12T07:00:00</pubdate> </Title> </DocumentElement> </root>
这些样例简化了数据访问,从而将重点全部放在 DataGrid 的使用上。上面的 XML 被加载进一个 DataSet。 DataSet 为数据提供高速缓存,从而可以进行筛选、排序和编辑等等各种操作。下面的代码来自 Global.asax,用于加载 DataSet 和将其保存为 Session 状态。
public void Session_OnStart() { // 将样例中所用的数据载入会话范围的 DataSet.
FileStream fs = null; DataSet ds = null;
try { fs = new FileStream(Server.MapPath("Data\\TitlesDB.xml"), FileMode.Open, FileAccess.Read); ds = new DataSet(); ds.ReadXml(fs); } finally { if (fs != null) { fs.Close(); fs = null; } } Session["AppData"] = ds; }
在实际的 Web 应用程序中,通常不是使用处于 Session 或 Application 状态的高速缓存数据,而是通过所存储的过程、中间层业务对象,或通过调用 Web 服务所揭示的方法来访问和修改数据。无论采取怎样的手段来访问数据,您会发现你依旧以同样的方式来编程和与控件的对象模型进行进行交互。 www.IBuySpy.com (英文) 网站就是演示这些概念的一个很好的应用示例。
--------------------------------------------------------------------------------
第 1 步: 一个基本的 DataGrid
序列的第一步展示了一个页面,其中包含单独一个 DataGrid 控件,用于显示来自数据源的一个只读作者列表。结果类似于 使用 ASP+ 列表绑定控件 (英文) 所取得的效果。
图 2. 完成第 1 步后的页面
DataGrid 声明来自:
Step1.aspx:
<asp:DataGrid id="authorsGrid" runat="server" AutoGenerateColumns="false" BackColor="White" BorderWidth="1px" BorderStyle="Solid" BorderColor="Tan" CellPadding="2" CellSpacing="0" Font-Name="Verdana" Font-Size="8pt">
<property name="Columns"> <asp:BoundColumn HeaderText="ID" DataField="au_id"> <property name="HeaderStyle"> <asp:TableItemStyle Width="100px"/> </property> </asp:BoundColumn> <asp:BoundColumn HeaderText="Name" DataField="au_name"> |
|
出处:本站原创 作者:佚名 |
|
|