欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在ASP.NET 2.0中操作数据之十一:基于数据的自定义格式化

程序员文章站 2023-12-14 15:31:04
介绍   我们可以通过控制headerstyle, rowstyle, alternatingrowstyle和其他一些属性来改变gridview, detailsvie...

介绍

  我们可以通过控制headerstyle, rowstyle, alternatingrowstyle和其他一些属性来改变gridview, detailsview, 和 formview的样式,比如cssclass, font, borderwidth, borderstyle, bar, width, height等

  一般,自定义格式化与我们所要显示的数据的值有关系。例如, 为了吸引用户注意那些库存为空的产品,我们可以将库存对应的字段unitsinstock  和unitsonorder为0的数据背景色设为黄色. 为了高亮化那些贵的产品,则将unitsinstock  高于$75.00的数据字体设置为粗体

  gridview, detailsview, formview的格式自定义可以有多种方法, 在本文中我们将用databound 和 rowdatabound两种事件来完成, 在下一篇里我们将尝试用alternative的方式 在gridview控件中使用templatefield

  使用detailsview 控件的 databound 事件当绑定数据到detailsview控件, 不管是从数据控件或编码填充数据到datasource属性并调用其databind()方法。以下几种事件将触发

1.databinding事件触发

2.数据绑定到数据绑定控件

3.databound事件触发

  一般在1,2,3之后数据将会通过事件立即填充数据控件,我们还可以自定义事件处理来确定数据是否已经被填充到控件中并按照我们的需要调整显示格式。我们可以来做个例子.我们将创建一个detailsview来列出一个产品的一般信息,并且当unitprice超过 $75.00 时用粗体,italic字体来显示unitprice的值

step 1: 在detailsview中显示产品信息

  在customformatting文件夹下新建一个customcolors.aspx页面,从工具箱中拖出一个detailsview控件到页面中,设置id为expensiveproductspriceinbolditalic绑定到一个新的数据源中,并配置此数据源到业务对象productsbll类中的getproducts()方法,这个的详细实现步骤已经在前面详细介绍过了,这里就忽略了

  当您绑定objectdatasource到detailsview时,我们可以修改一下字段列表,我选择移除了productid, supplierid, categoryid, unitsinstock, unitsonorder, reorderlevel和那些不被绑定的字段,他们将不会显示在detailsview列表中,而那些留下来的我们可以重命名他们,还可以修改他们的显示格式. 我还清空了detailsview的height和width属性,这样当显示的只有一条数据时不会出现样式的混乱。当然我们面对的数据绝不只有一条这么少,显示怎么办呢?我们可以检查detailsview的智能感知中检查enable paging checkbox是否被勾选上, 这样我们可以分页查看所有的数据了

在ASP.NET 2.0中操作数据之十一:基于数据的自定义格式化

图1: 在detailsview的值能感知中检查enable paging属性是否被勾选上

 在经过这些改变后, detailsview的代码更改为

<asp:detailsview id="detailsview1" runat="server" allowpaging="true" autogeneraterows="false" datakeynames="productid" datasourceid="objectdatasource1" enableviewstate="false">

 <fields>

 <asp:boundfield datafield="productname" headertext="product" sortexpression="productname"

/>

 <asp:boundfield datafield="categoryname" headertext="category" readonly="true"

sortexpression="categoryname" />

 <asp:boundfield datafield="suppliername" headertext="supplier" readonly="true"

sortexpression="suppliername" />

 <asp:boundfield datafield="quantityperunit" headertext="qty/unit"

sortexpression="quantityperunit" />

 <asp:boundfield datafield="unitprice" dataformatstring="{0:c}" headertext="price"

  htmlencode="false" sortexpression="unitprice" />

 </fields>

</asp:detailsview>

您这时可以按f5执行看看

在ASP.NET 2.0中操作数据之十一:基于数据的自定义格式化

图2: detailsview控件一次显示一个数据

step 2: 在databound事件中编码确定数据的值

  为了将那些unitprice高于$75.00的产品用粗体,italic字体显示出来,我们首先需要编码确定unitprice的值,对于detailsview我们可以通过databound事件完成. 我们选择detailsview并查看属性视图(f4位快捷键), 如果没有显示,则选择 view(视图)property window(属性窗口), 在确保您选择了detailsview的情况下双击databound事件或者输入您要创建的事件名

在ASP.NET 2.0中操作数据之十一:基于数据的自定义格式化

图3: 为databound事件创建一个事件处理

代码中将会自动生成以下代码

protected void expensiveproductspriceinbolditalic_databound(object sender, eventargs e)
{

}

  我们可以通过dataitem属性来设置detailsview的绑定项(一些强类型的数据行(datarow)组成的强类型的数据表(datatable)), 当数据表(datatable)绑定到detailsview时,数据表的第一行将被自动绑定到detailsview的dataitem属性,而dataitem属性中包含有datarowview (object类型),我们可以通过datarowview来访问一个productsrow 的datarow实例,还可以检测object的值来确定productsrow实例是否存在

下面的代码描述如何确定unitprice是否绑定到detailsview并且高于$75.00

protected void expensiveproductspriceinbolditalic_databound(object sender, eventargs e)

{

 // get the productsrow object from the dataitem property...

 northwind.productsrow product = (northwind.productsrow)((system.data.datarowview)

expensiveproductspriceinbolditalic.dataitem).row;

 if (!product.isunitpricenull() && product.unitprice > 75m)

 {

 // todo: make the unitprice text bold and italic

 }

}

注意: 当unitprice在数据库的值为空,我们在绑定到productsrow's unitprice属性之前检查确定他是否为空,这很重要因为我们可以通过检查这个属性来抛出一个强类型的异常 strongtypingexception exception.

step 3: 在detailsview中格式化 unitprice

  到这个时候我们已经知道即将绑定的unitprice是否高于$75.00,现在我们来看看怎么通过编码调整unitprice的格式,我们可以通过修改detailsviewid.rows[index];修改一行数据,而且我们可以通过访问detailsviewid.rows[index].cells[index]来访问某一单元格,这样我们可以通过修改与格式相关的属性来格式化这一单元格

  访问某一行需要得到某行的索引,索引从0开始, unitprice 在 detailsview中是第15行, 假设他在第四行那么我们可以通过expensiveproductspriceinbolditalic.rows[4]来访问. 这时我们可以通过下面的代码将这一行显示为粗体,italic 字体

expensiveproductspriceinbolditalic.rows[4].font.bold = true;

expensiveproductspriceinbolditalic.rows[4].font.italic = true;

然而,这样将会格式化label和值,如果我们只想将值格式话,而且我们需要将格式应用到当前行的第二格,请看下面的代码

expensiveproductspriceinbolditalic.rows[4].cells[1].font.bold = true;

expensiveproductspriceinbolditalic.rows[4].cells[1].font.italic = true;

  

我们还可以通过stylesheet 来显示标记和样式相关信息,而不是用确定的某一行某一列来设置格式,我们用css来控制格式,打开styles.css 文件,添加一个新的class命名为expensivepriceemphasis按照下面的代码css

.expensivepriceemphasis

{

 font-weight: bold;

 font-style: italic;

}

然后再databound事件中,设置单元的cssclass为expensivepriceemphasis,在databound事件处理中添加

当查看chai(费用低于$75.00),价格将会用正常格式显示 图4),但是当查看mishi kobe niku,(价格为$97.00)则会用我们设置的格式显示(图5)

在ASP.NET 2.0中操作数据之十一:基于数据的自定义格式化

图4: 价格低于$75.00将会用正常格式显示

在ASP.NET 2.0中操作数据之十一:基于数据的自定义格式化

图5: 价格高于$75.00将会用 粗体, italic 字体显示

  使用formview控件的 databound 事件绑定到formview数据的步骤和detailsview的步骤类似都要创建一个databound事件处理, 声明绑定到控件的dataitem类型属性, 然后执行绑定。然而,他们更新的方式不同

  formview不包括任何绑定列也不包含行的集合, 取而代之的是他由一系列包含若干静态html, web控件,绑定表达式的模板组合。调整 formview的外观涉及到调整一个或多个formview的模板

  让我们像前一个例子那样用formview列出产品项,但是这次我们仅仅用红色字体显示units小于等于10的产品的name和units

step 1: 在formview中显示产品信息

  添加一个formview到customcolors.aspx中,设置其id为lowstockedproductsinred,像前一个步骤一样绑定数据到objectdatasource中, 这将在formview中创建itemtemplate, edititemtemplate, 和insertitemtemplate .

  移除edititemtemplate和insertitemtemplate 并在 itemtemplate 中仅包含productname 和unitsinstock 项, 在智能感知中检查allow paging(分页)标记是否被选上

在这些操作后formview的代码大概会成这样

<asp:formview id="lowstockedproductsinred" runat="server" datakeynames="productid"

 datasourceid="objectdatasource1" allowpaging="true" enableviewstate="false">  

 <itemtemplate>

 <b>product:</b>

 <asp:label id="productnamelabel" runat="server" text='<%# bind("productname") %>'>

 </asp:label><br />

 <b>units in stock:</b>

 <asp:label id="unitsinstocklabel" runat="server" text='<%# bind("unitsinstock") %>'>

 </asp:label>

 </itemtemplate>

</asp:formview>

 注意itemtemplate 包含的代码:

·静态html – “product:” 和 “units in stock:” 包含 <br /> 和 <b> 元素.

·web 控件– 两个label控件, productnamelabel 和unitsinstocklabel.

·绑定表达式 –<%# bind("productname") %> 和<%# bind("unitsinstock") %> 表达式, 绑定值到label的text属性上

step 2: 在 databound 事件处理中编码确定数据的值

当formview的标记完成后,下一步就是确定unitsinstock的值是否小于等于10,这里和在detailview中类似,先创建databound事件

在ASP.NET 2.0中操作数据之十一:基于数据的自定义格式化

图6: 创建 databound 事件处理

在事件中声明formview的dataitem属性到productsrow实例中,确定unitsinprice的值并将对应的值用红色字体显示

protected void lowstockedproductsinred_databound(object sender, eventargs e)

{

 // get the productsrow object from the dataitem property...

 northwind.productsrow product = (northwind.productsrow)((system.data.datarowview)

lowstockedproductsinred.dataitem).row;

 if (!product.isunitsinstocknull() && product.unitsinstock <= 10)

 {

 // todo: make the unitsinstocklabel's text red

 }

}

step 3:在formview 的itemtemplate中格式化unitsinstocklabel label

最后一步就是要在itemtemplate中设置unitsinstocklabel的样式为红色字体,在itemtempelete中查找控件可以使用findcontrol(“controlid”)方法

webcontroltype somename = (webcontroltype)formviewid.findcontrol("controlid");

对于我们这个例子我们可以用如下代码来查找该label控件

label unitsinstock = (label)lowstockedproductsinred.findcontrol("unitsinstocklabel");

当我们找到这个控件时则可以修改其对应的style属性,在style.css中已经有一个写好的lowunitsinstockemphasis的css class ,我们通过下面的代码将css class设置到对应的属性

protected void lowstockedproductsinred_databound(object sender, eventargs e)

{

 // get the productsrow object from the dataitem property...

 northwind.productsrow product = (northwind.productsrow)((system.data.datarowview)

lowstockedproductsinred.dataitem).row;

 if (!product.isunitsinstocknull() && product.unitsinstock <= 10)

 {

 label unitsinstock = (label)lowstockedproductsinred.findcontrol("unitsinstocklabel");



 if (unitsinstock != null)

 {

  unitsinstock.cssclass = "lowunitsinstockemphasis";

 }

 }

}

注意: 这种方式在formview和gridview中也可以通过设置templatefields来达到同样的效果,我们将在下一篇中讨论templatefields.图7显示formview在当unitsinstock大于10的情况,图8则显示小于等于10的情况

在ASP.NET 2.0中操作数据之十一:基于数据的自定义格式化

图7 : 在高于10的情况下,没有值被格式化

在ASP.NET 2.0中操作数据之十一:基于数据的自定义格式化

图8:小于等于10时,值用红色字体显示

用gridview的 rowdatabound 事件自定义格式化

前面我们讨论了在formview和detailsview中实现数据绑定的步骤,现在让我们回顾下

databinding事件触发
数据绑定到数据绑定控件
databound事件触发
对于formview和detailsview有效因为只需要显示一个数据,而在gridview中,则要显示所有数据,相对于前面三个步骤,步骤二有些不同

在步骤二中,gridview 列出所有的数据,对于某一个记录将创建一个gridviewrow 实例并绑定,对于每个添加到gridview 中的 gridviewrow两个事件将会触发:

·rowcreated – 当gridviewrow被创建时触发

·rowdatabound – 当前记录绑定到gridviewrow时触发.

对于gridview,请使用下面的步骤

databinding事件触发
数据绑定到数据绑定控件
对于每一行数据..

a.创建gridviewrow

b.触发 rowcreated 事件

c.绑定数据到gridviewrow

d.触发rowdatabound事件

e.添加gridviewrow到rows 集合

databound事件触发 

为了自定义格式化gridview单独记录,我们需要为rowdatabound事件创建事件处理,让我们添加一个gridview到customcolors.aspx中,并显示name, category, 和 price,用黄色背景高亮那些价格小于$10.00的产品

step 1:在gridview中显示产品信息

  添加一个gridview到formview的下方,设置id为highlightcheapproducts.我们之前已经设置了一个objectdatasource来获取产品数据,现在我们绑定gridview到objectdatasource. 之后,编辑gridview的绑定列包含产品的name.categorie,price属性。完成之后gridview的代码将会是:

<asp:gridview id="highlightcheapproducts" runat="server" autogeneratecolumns="false"

 datakeynames="productid" datasourceid="objectdatasource1" enableviewstate="false">

 <columns>

 <asp:boundfield datafield="productname" headertext="product" sortexpression="productname"

/>

 <asp:boundfield datafield="categoryname" headertext="category" readonly="true"

sortexpression="categoryname" />

 <asp:boundfield datafield="unitprice" dataformatstring="{0:c}" headertext="price"

  htmlencode="false" sortexpression="unitprice" />

 </columns>

</asp:gridview>

图九显示浏览器查看的结果

在ASP.NET 2.0中操作数据之十一:基于数据的自定义格式化

图9: gridview显示产品的name, category, price

step 2:在rowdatabound的事件处理中编码确定数据对应的值

  当productsdatatable绑定到gridview,gridview将会产生若干个productsrow。gridviewrow的dataitem属性将会生成一个实际的productrow。在gridview的 rowdatabound事件发生之后,为了确定unitsinstock的值,我们需要创建rowdatabound的事件处理,在其中我们可以确定unitsinstock的值并做相应的格式化eventhandler的创建过程和前面两个一样

在ASP.NET 2.0中操作数据之十一:基于数据的自定义格式化

图10: 创建gridview的rowdatabound事件的事件处理

在后台代码里将会自动生成如下代码

protected void highlightcheapproducts_rowdatabound(object sender, gridviewroweventargs e)

{

}

 当rowdatabound事件触发,第二个参数gridviewroweventargs中包含了对gridviewrow的引用,我们用如下的代码来访问gridviewrow中的productsrow

protected void highlightcheapproducts_rowdatabound(object sender, gridviewroweventargs e)

{ // get the productsrow object from the dataitem property...

 northwind.productsrow product = (northwind.productsrow)((system.data.datarowview)

e.row.dataitem).row;

 if (!product.isunitpricenull() && product.unitprice < 10m)

 {

 // todo: highlight the row yellow...

 }

}

当运用rowdatabound事件处理时,gridview由各种类型不同的行组成,而事件发生针对所有的行类型, gridviewrow的类型可以由rowtype属性决定,可以是以下类型中的一种

·datarow – gridview的datasource中的一条记录

·emptydatarow – gridview的datasource显示出来的某一行为空

·footer – 底部行; 显示由gridview的showfooter属性决定

·header – 头部行; 显示由gridview的showheader属性决定

·pager – gridview的分页,这一行显示分页的标记

·separator – 对于gridview不可用,但是对于datalist和reapter的rowtype属性却很有用,我们将在将来的文章中讨论他们

当上面四种(datarow, pager rows footer, header)都不合适对应值时,将返回一个空的数据项, 所以我们需要在代码中检查gridviewrow的rowtype属性来确定:

protected void highlightcheapproducts_rowdatabound(object sender, gridviewroweventargs e)

{

 // make sure we are working with a datarow

 if (e.row.rowtype == datacontrolrowtype.datarow)

 {

  // get the productsrow object from the dataitem property...

  northwind.productsrow product = (northwind.productsrow)((system.data.datarowview)

e.row.dataitem).row;

  if (!product.isunitpricenull() && product.unitprice < 10m)

  {

  // todo: highlight row yellow...

  }

 }

}

step 3:用黄色高亮那些unitprice小于$10.00的行

我们需要访问gridviewid.rows[index]来访问index对应的那一行,gridviewid.rows[index].cells[index]来访问某一单元格.然而当rowdatabound事件触发时,gridviewrow却没有添加到rows集合中, 因此我们不能在rowdatabound事件处理中通过当前gridviewrow实例

取而代之,我们可以通过e.row来访问。为了高亮某一行我们用下面的代码

e.row.backcolor = system.drawing.color.yellow;

我们还可以通过cssclass取得同样的效果(推荐)

protected void highlightcheapproducts_rowdatabound(object sender, gridviewroweventargs e)

{

 // make sure we are working with a datarow

 if (e.row.rowtype == datacontrolrowtype.datarow)

 {

 // get the productsrow object from the dataitem property...

 northwind.productsrow product = (northwind.productsrow)((system.data.datarowview)

e.row.dataitem).row;

 if (!product.isunitpricenull() && product.unitprice < 10m)

 {

  e.row.cssclass = "affordablepriceemphasis";

 }

 }

}

在ASP.NET 2.0中操作数据之十一:基于数据的自定义格式化

图 11: 所需要的行用高亮黄色显示

总结

  在本篇中我们演示了基于数据绑定来自定义格式化gridview, detailsview, formview的方法。为了完成这些,我们创建databound或者rowdatabound事件,为了访问detailsview或formview的数据绑定,我们可以通过dataitem属性。对于gridview,每个gridviewrow实例的dataitem属性包含了绑定的数据(在rowdatabound事件处理中可用)

  为了调整格式,我们可能需要访问某一特定的行,在gridview和detailsview中我们可以通过索引访问,而在formview中我们则需要用findcontrol("controlid"),同时findcontrol("controlid")通常都可以访问web控件tempelete中的某个控件.在下一篇中我们将讨论如何在gridview和detailsview使用tempeletes, 还将讨论另外一些自定义格式化的方法

祝编程快乐!

作者简介

scott mitchell,著有六本asp/asp.net方面的书,是4guysfromrolla.com的创始人,自1998年以来一直应用 微软web技术。scott是个独立的技术咨询顾问,培训师,作家,最近完成了将由sams出版社出版的新作,24小时内精通asp.net 2.0。他的联系电邮为,也可以通过他的博客与他联系。

上一篇:

下一篇: