在ASP.NET 2.0中操作数据之二十八:GridView里的Button
导言
一般控件(比如gridview)显示数据的时候对数据只能读取,而需要处理数据的功能是非常常见的.典型的情况是为每行数据添加一个button, linkbutton, 或imagebutton . 当点击这些button时,数据会postback,执行一些服务器端的代码. 一条条的编辑或删除数据是最常见的情况.实际上,编辑和删除是如此常见,从概述插入、更新和删除数据 开始, 我们可以看到gridview, detailsview, 和 formview可以零代码的完成这些功能.
除了编辑和删除button,gridview, detailsview, and formview 也可以包含一些执行自定义服务器端代码的buttons, linkbuttons, 或 imagebuttons .在这一章我们来看看如何向一个gridview 或 detailsview 里添加自定义的button.我们还将创建一个根据supplier进行分页的页面.对每个给定的supplier,formview会显示它的相关信息,外加一个button .点击这个button 时,所有相关products会被标记为停止使用.另外,gridview 会列出选定的supplier提供的所有product ,并且每一行会包含“increase price”和“discount price”两个button.这两个button用来提高或降低10%的product单价(见图一).
图 1: formview和gridview 都包含了执行自定义行为的button
第一步: 添加一个button 教程页
在研究如何添加自定义button之前,我们先花一点时间在网站里创建一些页,这些页会在本指南里用到.先添加一个名为custombuttons的文件夹,然后添加如下的两个页.添加页的时候确保每页都选择了site.master作为母板页.
default.aspx
custombuttons.aspx
图 2: 添加本指南需要的页面
象其它文件夹一样,custombuttons 文件夹里的default.aspx 用来列出教程章节.记得sectionleveltutoriallisting.ascx 这个用户控件提供了这个功能.因此,从解决方案浏览里将这个用户控件拖到页面上.
图 3: 添加sectionleveltutoriallisting.ascx 用户控件 到default.aspx
最后,将这些页的地址加到 web.sitemap 的条目里.在paging and sorting <sitemapnode>之后添加下面的标记.
<sitemapnode title="adding custom buttons" description="samples of reports that include buttons for performing server-side actions" url="~/custombuttons/default.aspx"> <sitemapnode title="using buttonfields and buttons in templates" description="examines how to add custom buttons, linkbuttons, or imagebuttons as buttonfields or within templates." url="~/custombuttons/custombuttons.aspx" /> </sitemapnode>
修改完web.sitemap后,在浏览器里看一下本教程站点,现在左边的菜单里包含了编辑,插入,删除教程的项.
图 4: site map包含了添加自定义button教程
第二步: 添加一个列出 supplier的formview
我们首先来添加一个列出suppliers的formview .正如在导言里讨论的那样,formview根据supplier分页,并在gridview显示supplier 提供的所有product .另外formview 会包含一个button .当点击时,所有相关products会被标记为停止使用.在我们为formview添加自定义button之前,我们首先创建显示supplier 信息的formview .
打开custombuttons文件夹里的custombuttons.aspx 页,从工具箱里拖一个formview进来,将formview的id设置为suppliers.打开formview的智能标签,创建一个名为suppliersdatasource的objectdatasource.
图 5: 创建一个名为suppliersdatasource的objectdatasource
选择suppliersbll 类的getsuppliers()方法配置objectdatasource(见图6).由于这个formview没有提供修改supplier 信息的界面,所以在update 标签的下拉列表里选择none.
图 6: 使用 suppliersbll 类的getsuppliers() 方法配置数据源
数据源配置完成后,visual studio会生成一个insertitemtemplate,一个edititemtemplate和一个formview的itemtemplate.去掉insertitemtemplate 和edititemtemplate ,修改itemtemplate,让它只显示supplier的公司名,电话号码.最后,在智能标签里选中enable paging checkbox 或者设置allowpaging 属性为true.完成这些后,你的声明标记看起来应该和以下差不多:
<asp:formview id="suppliers" runat="server" datakeynames="supplierid" datasourceid="suppliersdatasource" enableviewstate="false" allowpaging="true"> <itemtemplate> <h3> <asp:label id="companyname" runat="server" text='<%# bind("companyname") %>' /> </h3> <b>phone:</b> <asp:label id="phonelabel" runat="server" text='<%# bind("phone") %>' /> </itemtemplate> </asp:formview> <asp:objectdatasource id="suppliersdatasource" runat="server" oldvaluesparameterformatstring="original_{0}" selectmethod="getsuppliers" typename="suppliersbll"> </asp:objectdatasource>
图 7: formview列出当前选定的supplier的companyname and phone
第三步 : 添加一个gridview,用来列出某个supplier的所有product
在添加“discontinue all products”button 前,先在formview 下面添加一个gridview . 设置id 为suppliersproducts,添加一个名为suppliersproductsdatasource的objectdatasource .
图 8: 创建一个名为suppliersproductsdatasource的objectdatasource
选择productsbll 类的getproductsbysupplierid(supplierid)方法配置objectdatasource(见图9).虽然gridview 允许修改product的价格,但是并不使用的gridview自带的编辑或删除功能.因此在update, insert, and delete 标签的下拉列表里都选择none.
图 9: 使用productsbll 类的getproductsbysupplierid(supplierid) 方法配置数据源
由于getproductsbysupplierid(supplierid)有一个输入参数,objectdatasource向导会提示我们配置这个参数.为了将supplierid 从formview传过来,在参数来源的下来列表里选择control,在controlid 下拉列表里选择suppliers (在第二步里创建的formview 的id).
图 10: 指定 supplierid 参数的来源为suppliers formview
完成了objectdatasource 向导后,gridview 里的每一行product会包含一个boundfield 和一个checkboxfield . 我们来精简一下,只显示discontinued checkboxfield,productname 和unitprice .我们修改unitprice 列的格式为货币. 你的gridview 和suppliersproductsdatasource objectdatasource的声明标记看起来应该和下面差不多:
<asp:gridview id="suppliersproducts" autogeneratecolumns="false" datakeynames="productid" datasourceid="suppliersproductsdatasource" enableviewstate="false" runat="server"> <columns> <asp:boundfield datafield="productname" headertext="product" sortexpression="productname" /> <asp:boundfield datafield="unitprice" headertext="price" sortexpression="unitprice" dataformatstring="{0:c}" htmlencode="false" /> <asp:checkboxfield datafield="discontinued" headertext="discontinued" sortexpression="discontinued" /> </columns> </asp:gridview> <asp:objectdatasource id="suppliersproductsdatasource" runat="server" oldvaluesparameterformatstring="original_{0}" selectmethod="getproductsbysupplierid" typename="productsbll"> <selectparameters> <asp:controlparameter controlid="suppliers" name="supplierid" propertyname="selectedvalue" type="int32" /> </selectparameters> </asp:objectdatasource>
现在我们的显示了一个主/从表,用户通过在上面的formview 里选择一个supplier ,在下方的gridview 里就可以看到这个supplier 提供的products.
图11是在formview里选择tokyo traders supplier 的截图.
图 11: 在gridview显示选定的supplier的产品
第四步: 创建dal和bll层的停止使用supplier的所有products 的方法
在formview 添加discontinue button前,我们首先需要在dal 和bll 里添加完成这个功能的方法.这个方法的名字为discontinueallproductsforsupplier(supplierid). 当点击formview的button 时,我们会调用business logic layer里的这个方法,并将选定的supplier的supplierid传进去.bll 会继续调用data access layer的相关方法,这个方法会向数据库提交一个停止使用选定的supplier的products的update语句
象在以前的教程里所做的那样,我们使用自底向上的方法,首先创建dal 的方法,然后是bll ,最后在 asp.net page里实现这个功能.打开app_code/dal文件夹里的northwind.xsd ,为productstableadapter 添加一个新方法(右键点击productstableadapter ,选择add query).这样弹出tableadapter query 的配置向导.首先指定dal 需要使用的sql .
图 12: 使用sql statement创建dal 方法
接着,向导会询问我们创建哪种类型的query .由于discontinueallproductsforsupplier(supplierid)需要更新products表,为指定的supplierid 的所有products的discontinued 字段设置为1,因此我们需要创建一个更新数据的query .
图 13: 选择update query的类型
下一个向导显示的窗口提供了tableadapter的已经存在的update 语句,它会updates 在products datatable定义的所有的字段.用下面的语句替换它:
update [products] set
discontinued = 1
where supplierid = @supplierid
输入以上语句后点next,最后一个向导窗口需要输入该方法的名字—discontinueallproductsforsupplier.完成向导后点finish button.当你回到dataset 设计器时你应该可以在productstableadapter 看到名为discontinueallproductsforsupplier(@supplierid)的方法.
图 14: 为 dal 的方法取名为 discontinueallproductsforsupplier
完成data access layer里的discontinueallproductsforsupplier(supplierid)方法后,我们下一步的任务是创建business logic layer里的相应的方法.打开productsbll 类文件,添加以下内容:
public int discontinueallproductsforsupplier(int supplierid) { return adapter.discontinueallproductsforsupplier(supplierid); }
这个方法仅仅是调用dal里的discontinueallproductsforsupplier(supplierid)方法,并传递提供的supplierid 参数.如果有一些业务规则规定仅仅允许在一定的条件下supplier的products 才能被停止使用,那么这些规则应该写在这里(bll).
注意:和productsbll 类的updateproduct重载不一样,discontinueallproductsforsupplier(supplierid)的签名不包括dataobjectmethodattribute 属性(<system.componentmodel.dataobjectmethodattribute(system.componentmodel.dataobjectmethodtype.update, boolean)>).这个将discontinueallproductsforsupplier(supplierid) 方法从objectdatasource的配置数据源向导的update标签里的下拉列表中排除.我之所以忽略这个属性是因为我们会在asp.net page里直接通过event handler 调用discontinueallproductsforsupplier(supplierid)方法.
第五步: 为formview添加一个“discontinue all products” button
完成了bll 和 dal 里的discontinueallproductsforsupplier(supplierid)方法后,我们来做实现停止使用选定的supplier的所有product的功能最后一步:为 formview的 itemtemplate添加button .我们将这个button 添加在supplier的phone number下,text为“discontinue all products”,id为discontinueallproductsforsupplier.你可以通过formview的智能标签里的edit templates 来添加这个button (见图15),或直接修改代码.
图 15: 为formview的itemtemplate添加 “discontinue all products” button
当用户点击这个button 时,页面会回发,formview的itemcommand event被激发.我们可以为这个事件创建一个event handler ,用来在button 被点击时执行自定义代码.注意,任何时候formview里的任何button, linkbutton, 或 imagebutton被点击时,itemcommand 事件都会被激发.这意味着当用户在formview里从一个页面跳到另一个页面时,itemcommand 事件会被激发.当用户点击一个支持inserting, updating, 或 deleting的formview里的new, edit, 或 delete 时,itemcommand 事件会被激发.
既然无论点击什么button时, itemcommand 都会被激发,那么在event handler里我们需要判断是“discontinue all products” button 被点击了还是其它的button.为了达到这个目的,我们可以通过设置button 的commandname来识别. 当button 被点击后,commandname 的值被传到itemcommand 的event handler,我们通过这个值来判断被点击的button是否是“discontinue all products” button.设置“discontinue all products” button的commandname 为“discontinueproducts”.
最后我们在客户端增加一个确认框来确保用户真的想停止使用选择的supplier的所有product.和我们在为删除数据添加客户端确认 里看到的一样,这个可以用javascript来完成. 设置button 的onclientclick属性为“return confirm('this will mark _all_ of this supplier/'s products as discontinued. are you certain you want to do this?');”
<asp:formview id="suppliers" runat="server" datakeynames="supplierid" datasourceid="suppliersdatasource" enableviewstate="false" allowpaging="true"> <itemtemplate> <h3><asp:label id="companyname" runat="server" text='<%# bind("companyname") %>'></asp:label></h3> <b>phone:</b> <asp:label id="phonelabel" runat="server" text='<%# bind("phone") %>' /> <br /> <asp:button id="discontinueallproductsforsupplier" runat="server" commandname="discontinueproducts" text="discontinue all products" onclientclick="return confirm('this will mark _all_ of this supplier/'s products as discontinued. are you certain you want to do this?');" /> </itemtemplate> </asp:formview>
下面,为formview的 itemcommand 事件创建event handler . 在这个event handler 里我们需要首先判断“discontinue all products”button是否被点击了.如果是,我们就需要创建一个productsbll 类的实例然后调用discontinueallproductsforsupplier(supplierid)方法,并将formview里选定的supplierid 传过去.
protected void suppliers_itemcommand(object sender, formviewcommandeventargs e) { if (e.commandname.compareto("discontinueproducts") == 0) { // the "discontinue all products" button was clicked. // invoke the productsbll.discontinueallproductsforsupplier(supplierid) method // first, get the supplierid selected in the formview int supplierid = (int)suppliers.selectedvalue; // next, create an instance of the productsbll class productsbll productinfo = new productsbll(); // finally, invoke the discontinueallproductsforsupplier(supplierid) method productinfo.discontinueallproductsforsupplier(supplierid); } }
注意:在formview 里当前选定的supplier 的supplierid 可以通过formview的 selectedvalue property属性获取.selectedvalue 属性返回formview里显示的记录的第一个data key的值.formview的datakeynames property在绑定objectdatasource 到formview 时(第二步)会自动的被设置为supplierid .
itemcommand event handler 创建完后,花点时间测试一下这个页面.浏览cooperativa de quesos 'las cabras' supplier (在我这是formview 里的第五个supplier ).这个supplier 提供两种product, queso cabrales and queso manchego la pastora,两个都没有停止使用的.
想象一下 cooperativa de quesos 'las cabras' 歇业了,因此它的产品都要被停止使用.点击“discontinue all products” button.会弹出一个确认的对话框.
图 16: cooperativa de quesos 'las cabras' 供应 两种有效的产品
如果在确定对话框里点击ok,表单提交就会继续,ormview的itemcommand 事件会被激发.然后我们创建的event handler会执行,调用discontinueallproductsforsupplier(supplierid)方法,停止使用queso cabrales 和 queso manchego la pastora这两个产品.
如果你禁用了gridview的view state,每次postback时gridview 都会重新绑定,因此这两种product被停止使用的状态马上就能显示出来(见图17).而如果没有禁用gridview的view state,你需要手动再次绑定数据.
图 17: 点击 “discontinue all products” button后, supplier的 products被更新
第六步: 为调整product的价格,在business logic layer 创建一个updateproduct
和formview里的“discontinue all products” button 一样,为了在gridview 里添加提高或者降低product 的价格的button,我们首先添加data access layer and business logic layer 的方法.由于我们在dal里已经有一个更新单个产品记录的方法,我们可以通过在bll创建updateproduct 的重载方法来实现这个功能.
我们以前的updateproduct 包括一些product 字段作为输入值,我们可以为指定的product更新这些字段.我们将做少量修改,传递productid 和调整单价的百分比.因为不用再测定当前product 的单价,所以这样的方法会让我们在asp.net page 的cs文件里的代码变的更简洁.
updateproduct 在本指南中使用的重载方法如下:
public bool updateproduct(decimal unitpriceadjustmentpercentage, int productid) { northwind.productsdatatable products = adapter.getproductbyproductid(productid); if (products.count == 0) // no matching record found, return false return false; northwind.productsrow product = products[0]; // adjust the unitprice by the specified percentage (if it's not null) if (!product.isunitpricenull()) product.unitprice *= unitpriceadjustmentpercentage; // update the product record int rowsaffected = adapter.update(product); // return true if precisely one row was updated, otherwise false return rowsaffected == 1; }
这个方法通过dal的getproductbyproductid(productid)方法获取指定product 的信息.它会检查product的单价是否是空值.如果是,这个价格就不被更改.如果不是,product的unitprice 将根据指定的百分比更改(unitpriceadjustmentpercent)
第七步: 在gridview里添加升价和降价的button
gridview (和detailsview)都是字段的集合.除了boundfields, checkboxfields, and templatefields这几个字段外,asp.net还包含buttonfield.就象它的名字一样,buttonfield提供一个button, linkbutton, 或 imagebutton列.和formview一样,点击gridview 里的任何一个button— 分页,编辑或删除,排序等— 页面都会回发 ,并激发gridview的rowcommand event.
buttonfield 有一个commandname 属性,可以用来指派特定的值给每个button的commandname 属性.象formview一样,commandname 的值用来在rowcommand event handler 里判断哪个button被点击了.
现在我们来为gridview添加两个buttonfield,一个的text为“price +10%” ,另外一个的text为“price -10%”. 点击gridview的智能标签里的edit columns link ,在左上的列表里选择buttonfield 类,点添加.
图 18: 为gridview添加两个buttonfield
移动这两个buttonfield 到gridview 的前两列.分别设置buttonfield的text为 “price +10%” and “price -10%”,commandname 为“increaseprice” and “decreaseprice”,.默认情况下,buttonfield 里的button为linkbuttons,这个是可通过buttonfield的buttontype property属性来修改的.我们将这两个buttonfield设置为常规的push button.因此,设置buttontype 属性为button.图19显示了设置完成后的fields 对话框的样子.而后面一个图则为gridview的页面代码.
图 19: 配置 buttonfield的 text, commandname, and buttontype 属性
<asp:gridview id="suppliersproducts" runat="server" autogeneratecolumns="false" datakeynames="productid" datasourceid="suppliersproductsdatasource" enableviewstate="false"> <columns> <asp:buttonfield buttontype="button" commandname="increaseprice" text="price +10%" /> <asp:buttonfield buttontype="button" commandname="decreaseprice" text="price -10%" /> <asp:boundfield datafield="productname" headertext="product" sortexpression="productname" /> <asp:boundfield datafield="unitprice" headertext="price" sortexpression="unitprice" dataformatstring="{0:c}" htmlencode="false" /> <asp:checkboxfield datafield="discontinued" headertext="discontinued" sortexpression="discontinued" /> </columns> </asp:gridview>
创建buttonfield完成后,最后一步是为gridview的rowcommand 事件创建event handler .当“price +10%”或“price -10%”button被点击时,这个event handler需要判断被点击的那一行的productid ,然后调用productsbll 类的updateproduct 方法,并将unitprice 的调整折扣和productid传进去.下来的代码会完成以上工作:
protected void suppliersproducts_rowcommand(object sender, gridviewcommandeventargs e) { if (e.commandname.compareto("increaseprice") == 0 || e.commandname.compareto("decreaseprice") == 0) { // the increase price or decrease price button has been clicked // determine the id of the product whose price was adjusted int productid = (int)suppliersproducts.datakeys[convert.toint32(e.commandargument)].value; // determine how much to adjust the price decimal percentageadjust; if (e.commandname.compareto("increaseprice") == 0) percentageadjust = 1.1m; else percentageadjust = 0.9m; // adjust the price productsbll productinfo = new productsbll(); productinfo.updateproduct(percentageadjust, productid); } }
为了判断被点击“price +10%” or “price -10%” button 的那一行的productid ,我们需要用到gridview的datakeys 集合.这个集合包含了gridview 的行的所有值.由于gridview在绑定到objectdatasource 时,datakeynames 被visual studio设置为productid ,datakeys(rowindex).value 提供了指定rowindex的productid .
buttonfield 会将被点击的button所在row 的rowindex 自动传到e.commandargument 参数里.因此,我们用convert.toint32(suppliersproducts.datakeys(convert.toint32(e.commandargument)).value)来获取被点击“price +10%” or “price -10%” button的行的productid .
和“discontinue all products” button里一样,如果你禁用了gridview的view state属性,每次postback时gridview 都会重新绑定.如果你这么做,你需要手动再次绑定.
图20显示当浏览grandma kelly's homestead提供的product的页.图21显示当grandma's boysenberry spread 的“price +10%” button 被点击了两次和northwoods cranberry sauce的“price -10%” button被点击了一次的页面.
图20: gridview 包含“price +10%” 和 “price -10%” 两个buttons
图 21: 第一和第三个产品的价格通过“price +10%” and “price -10%” buttons更新
注意:gridview (和detailsview)同样可以将buttons,linkbuttons或imagebuttons 加到templatefields里.和boundfield一样,这些button被点击时会产生回发,触发gridview的rowcommand 事件.当添加button到 templatefield里时,button的commandargument 没有想使用buttonfields一样,被自动设置为row 的index .如果你需要在rowcommand 的event handler里判断点击的button所在行的index ,你需要在templatefield的页面代码里使用以下代码来设置button的commandargument 属性:
<asp:button runat="server" ... commandargument='<%# ctype(container, gridviewrow).rowindex %>' />.
总结
gridview, detailsview, 和formview都可以包含buttons, linkbuttons, 或 imagebuttons.这些button被点击时,页面回发,并激发formview 和detailsview 的itemcommand 事件,gridview的rowcommand 事件.这些控件都有内置的处理普通命令的功能,比如删除或编辑一条记录.然而我们一样可以使用执行自定义代码的button.
为了达到这个目的,我们需要为itemcommand 或 rowcommand 创建一个event handler .在这个event handler 里我们首先检查commandname 的值来判断哪个button被点击了,然后执行相应的自定义代码.在本指南里我们看到了如何使用button和buttonfield来停止使用指定supplier 的所有产品,和提高或降低特定product 的10%的价格.
祝编程快乐!
作者简介
scott mitchell,著有六本asp/asp.net方面的书,是4guysfromrolla.com的创始人,自1998年以来一直应用 微软web技术。scott是个独立的技术咨询顾问,培训师,作家,最近完成了将由sams出版社出版的新作,24小时内精通asp.net 2.0。他的联系电邮为,也可以通过他的博客与他联系。