日期:2009-08-24  浏览次数:20468 次

在本文的第一部分,我们研究了如何设定DataGrid Web控件的显示属性以及如何通过样式设定DataGrid的页眉、页脚、行和交替行的显示。所有这些技术或是用于设定整个DataGrid的显示,或是用于设定DataGrid中行的显示。但是如何设定DataGrid中列的显示属性?其实并不难,接着读你就知道了。


设定哪些列应该显示

缺省情况下DataGrid在生成的HTML表格中为SQL查询返回的每一列生成一个对应的列。但是在一些情况下仅希望在DataGrid中显示这些列中的一部分列。例如,在我正在进行的示例中,通过调用sp_Popularity存储过程显示了ASPFAQs.com最受欢迎的10个问题。它包含FAQID列,或许我并不希望显示该列。

如果不想在DataGrid中显示数据库查询返回的所有列,必须显式地声明所有希望显示的列。第一步是将DataGrid的AutoGenerateColumns属性设为False。一旦执行完这个操作,就需要通过BoundColumn Web控件设定需显示的列,如下所示:

<ASP:DataGrid runat="server" AutoGenerateColumns="False">
<Columns>
<ASP:BoundColumn DataField="DatabaseColumnName1" ... />
<ASP:BoundColumn DataField="DatabaseColumnName2" ... />
...
<ASP:BoundColumn DataField="DatabaseColumnNameN" ... />
</Columns>
</ASP:datagrid>
对于每一个希望显示的列,需要通过一个包含DataField属性的<ASP:BoundColumn ... />标记来指定数据库中需要显示的列。所有这些BoundColumn标记必须包含在Column标记内。(也可通过编程的方式指定这些绑定列,但是它的可读性差,并且需要很多代码!)请注意只有通过BoundColumn标记指定的列才会在DataGrid中显示,你必须指定需要显示的列!

BoundColumn控件的优点在于它包含一些设定格式的属性,包括:

l HeaderText — 设定列标题的文字。

l FooterText — 设定列尾的文字(记住若要在DataGrid中显示页脚,应将ShowFooter设为True)。

l HeaderStyle/FooterStyle/ItemStyle — 包含与DataGrid样式相同的属性。对设定列居中、前景色、背景色等很有用。

l DataFormatString — 设置格式命令。(参考下面的示例;参考文档以获得全部的格式化规范)

让我们看一下如何通过使用BoundColumn标记来进一步增强前面的示例。正如前面所提到的,我们不想显示FAQID或FAQCategoryID列,并且我们希望对数字列(ViewCount)和日期/时间列(DateEntered)设定格式。另外,我们希望数字列的值居中。这些均可通过几行易于阅读易于理解的代码完成:

<ASP:DataGrid runat="server" id="dgPopularFAQs"
BackColor="#eeeeee" Width="85%"
HorizontalAlign="Center"
Font-Name="Verdana" CellPadding="4"
Font-Size="10pt" AutoGenerateColumns="False">
<HeaderStyle BackColor="Black" ForeColor="White"
Font-Bold="True" HorizontalAlign="Center" />
<AlternatingItemStyle BackColor="White" />

<Columns>
<ASP:BoundColumn DataField="CatName" HeaderText="Category Name" />
<ASP:BoundColumn DataField="Description" HeaderText="FAQ Description" />
<ASP:BoundColumn DataField="ViewCount" DataFormatString="{0:#,###}"
HeaderText="Views" ItemStyle-HorizontalAlign="Center" />
<ASP:BoundColumn DataField="SubmittedByName" HeaderText="Author" />
<ASP:BoundColumn DataField="SubmittedByEmail" HeaderText="Author's Email" />
<ASP:BoundColumn DataField="DateEntered" HeaderText="Date Added"
DataFormatString="{0:MM-dd-yyyy}" />
</Columns>
</ASP:datagrid>
实际运行结果如下:

Category Name
FAQ Description

Views
Date Added

Getting Started
Where can I host my ASP Web site for free (similar to GeoCities or Tripod or any of the many other free Web site sites)?

161,316
03-20-2001

ASP.NET
How can I format numbers and date/times using ASP.NET? For example, I want to format a number as a currency.

124,391
01-19-2002

Databases, Errors
I am using Access and getting a 80004005 error (or a [Microsoft][ODBC Microsoft Access Driver] The Microsoft Jet database engine cannot open the file '(unknown)' error) when trying to open a c