欢迎来到天天文库
浏览记录
ID:6053686
大小:155.00 KB
页数:17页
时间:2018-01-01
《aspnet_tutorial20_customizingdatamodui_cs》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、ASP.NET2.0中的数据操作::定制数据修改界面WorkingwithDatainASP.NET2.0::CustomizingtheDataModificationInterface简介IntroductionGridView和DetailsView控件通过绑定列和CheckBox列,可以简化数据编辑界面制作,呈现只读,编辑和新增界面,我们不需要增加元素标记或编写任何额外代码就可以得到这些界面。然而,绑定列和CheckBox列呈现的界面却缺乏实际应用中经常用到的定制功能。为了对GridVi
2、ew和DetailsView的编辑、新增界面进行定制,需要用模板列(TemplateField)替换原有列。TheBoundFieldsandCheckBoxFieldsusedbytheGridViewandDetailsViewcontrolssimplifytheprocessofmodifyingdataduetotheirabilitytorenderread-only,editable,andinsertableinterfaces.Theseinterfacescanberende
3、redwithouttheneedforaddinganyadditionaldeclarativemarkuporcode.However,theBoundFieldandCheckBoxField’sinterfaceslackthecustomizabilityoftenneededinreal-worldscenarios.InordertocustomizetheeditableorinsertableinterfaceinaGridVieworDetailsViewweneedtoi
4、nsteaduseaTemplateField.在上节教程中我们讨论如何增加验证控件来定制数据编辑界面,而本节教程将演示如何使用Web控件对实际的数据集合进行定制:将绑定列和CheckBox列中默认的TextBox、CheckBox控件替换成其他的输入控件。为此,我们将创建一个可编辑的GridView,并允许编辑更新产品的名字、类别、提供商和废弃状态等。而且编辑某行时,类别category和提供商supplier我们将使用DropDownList来显示,以供用户进行选择。此外,还将CheckBo
5、x列中默认的CheckBox控件替换成RadioButtonList控件,并提供2个单选选项:Active和Discontinued。如图1:IntheprecedingtutorialPleaselinkthistotheprevioustutorial.wesawhowtocustomizethedatamodificationinterfacesbyaddingvalidationWebcontrols.Inthistutorialwe’lllookathowtocustomizethea
6、ctualdatacollectionWebcontrols,replacingtheBoundFieldandCheckBoxField’sstandardTextBoxandCheckBoxcontrolswithalternativeinputWebcontrols.Inparticular,we’llbuildaneditableGridViewthatallowsaproduct’sname,category,supplier,anddiscontinuedstatustobeupda
7、ted.Wheneditingaparticularrow,thecategoryandsupplierfieldswillrenderasDropDownLists,containingthesetofavailablecategoriesandsupplierstochoosefrom.Furthermore,we’llreplacetheCheckBoxField’sdefaultCheckBoxwithaRadioButtonListcontrolthatofferstwooptions
8、:“Active”and“Discontinued”.图1:在GridView的编辑界面使用DropDownList和RadioButton控件Figure1:TheGridView’sEditingInterfaceIncludesDropDownListsandRadioButtons一、重载UpdateProduct方法Step1:CreatingtheAppropriateUpdateProductOverload本节教程我们将创建一个可编辑的GridView并允许编辑更新产品的名字、类
此文档下载收益归作者所有
点击更多查看相关文章~~