扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
在本页阅读全文(共19页)
图 1. 完成的页面 |
<root> <schema id="DocumentElement" targetNamespace="" xmlns="http://www.w3.org/1999/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <element name="Author"> <complexType content="elementOnly"> <element name="au_id" type="string" minOccurs="1" maxOccurs="1"></element> <element name="au_name" type="string" minOccurs="1" maxOccurs="1"></element> <element name="address" type="string" minOccurs="0" maxOccurs="1"></element> <element name="city" type="string" minOccurs="0" maxOccurs="1"></element> <element name="state" type="string" minOccurs="0" maxOccurs="1"></element> <element name="zip" type="string" minOccurs="0" maxOccurs="1"></element> <element name="phone" type="string" minOccurs="0" maxOccurs="1"></element> </complexType> <unique name="AuthorConstraint" msdata:PrimaryKey="True"> <selector>.</selector> <field>au_id</field> </unique> </element> <element name="Title"> <complexType content="elementOnly"> <element name="title_id" type="string" minOccurs="1" maxOccurs="1"></element> <element name="au_id" type="string" minOccurs="1" maxOccurs="1"></element> <element name="title" type="string" minOccurs="1" maxOccurs="1"></element> <element name="price" msdata:DataType="System.Currency" 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> |
这些样例简化了数据访问,从而将重点全部放在 DataGrid 的使用上。上面的 XML 被加载进一个 DataSet。 DataSet 为数据提供高速缓存,从而可以进行筛选、排序和编辑等等各种操作。下面的代码来自 Global.asax,用于加载 DataSet 和将其保存为 Session 状态。
public void Session_OnStart() { FileStream fs = null; |
在实际的 Web 应用程序中,通常不是使用处于 Session 或 Application 状态的高速缓存数据,而是通过所存储的过程、中间层业务对象,或通过调用 Web 服务所揭示的方法来访问和修改数据。无论采取怎样的手段来访问数据,您会发现你依旧以同样的方式来编程和与控件的对象模型进行进行交互。
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者