Scott Mitchell 的ASP.NET 2.0数据教程之二十四.分页和排序报表数据
图5:对于UPDATE, INSERT, 和DELETE页,我们从下拉列表中选择(None)选项
下一步,让我们调整GridView的字段使之只显示产品名、供应商、分类、价格和状态。另外,我们可以尽管进行一些格式上的调整,比如配置价格的HeaderText以符合我们的货币形式。经过这些修改之后,我们的GridView代码应该和下面的差不多:
1 <asp:GridView ID="Products" runat="server" AutoGenerateColumns="False" DataKeyNames="ProductID" 2 DataSourceID="ObjectDataSource1" EnableViewState="False">
3 <Columns>
4 <asp:BoundField DataField="ProductName" HeaderText="Product" SortExpression="ProductName" /> 5 <asp:BoundField DataField="CategoryName" HeaderText="Category" ReadOnly="True"