- 1、本文档共24页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
使用CascadingDropDown控件
主要内容
1.CascadingDropDown控件介绍
2.从数据库读取数据并填充CascadingDropDown
一.CascadingDropDown控件介绍
CascadingDropDown通常叫作级联下拉菜单,本文将通过读取Northwind数据库中的Emplyee、Order、OrderDatail信息作为示例,来展示一下它的使用。示例代码如下:
atlasToolkit:CascadingDropDown ID=CDD1 runat=server
atlasToolkit:CascadingDropDownProperties
TargetControlID=DropDownList2
Category=Model
PromptText=Please select a model
LoadingText=[Loading models]
ServicePath=CarsService.asmx
ServiceMethod=GetDropDownContents
ParentControlID=DropDownList1
SelectedValue=SomeValue
/atlasToolkit:CascadingDropDownProperties
/atlasToolkit:CascadingDropDown
对于CascadingDropDown需要为它添加CascadingDropDownProperties,有多少个下拉列表,就添加几个CascadingDropDownProperties,主要属性如下:
属性
说明
TargetControlID
指定要扩展的DropDownList的ID
Category
DropDownList表示的类别名称,在WebMethod中会用到
PromptText
没有选择时显示的文字
LoadingText
加载数据时显示的文字
ServicePath
获取数据的Web Service,为每个DropDownList都要指定
ServiceMethod
获取数据的Web Method
ParentControlID
要扩展的DropDownList的父控件ID
SelectedValue
默认的选择项的值
二.从数据库读取数据并填充CascadingDropDown
下面用读取Northwind数据库中的Emplyee、Order、OrderDatail信息,看一个完整的示例。在新建一个Web Site后,先在页面的头部加上:
%@ Register Assembly=AtlasControlToolkit
Namespace=AtlasControlToolkit
TagPrefix=atlasToolkit %
加入三个DropDownList,分别用来显示Emplyee,Order,OrderDatail:
div
h3
Employee:
asp:DropDownList ID=ddlEmployees runat=server /br /br /
nbsp;nbsp;Order:
asp:DropDownList ID=ddlOrders runat=server /br /br /
nbsp;nbsp;Detail:
asp:DropDownList ID=ddlOrderDetails runat=server /
/h3
/div
下面我们添加一个Northwind.asmx的Web Service,编写相关的Web Method:
[WebMethod]
public CascadingDropDownNameValue[] GetEmployees(
string knownCategoryValues, string category)
{
string connectionString = ConfigurationManager.ConnectionStrings[ConnectionString].ConnectionString;
SqlConnection connection = new
SqlConnection(connectionString);
SqlCommand command = new
您可能关注的文档
- 优秀员工应具备“许三多”精神.doc
- 优秀、结构科学的商务市场分析模板:网络市场的增长和影响Social media Developing a strategy for pharma有美丽倒影.ppt
- 优秀毕业论文_车载式电解水器控制系统的设计.doc
- 优秀班组长的领导统御.ppt
- 优秀英语毕业论文comparative study of cultural differences.doc
- 优秀行政人事管理者的必修课.doc
- 优秀的柜台营业员是如何培养成的.ppt
- 优耐奇免修宝是一种什么样的产品.doc
- 优美的瑜伽.ppt
- 优耐特斯螺杆空压机.ppt
- 人教版九年级英语全一册单元速记•巧练Unit13【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit9【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit11【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit14【单元测试·提升卷】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit8【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit4【单元测试·提升卷】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit13【单元测试·基础卷】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit7【速记清单】(原卷版+解析).docx
- 苏教版五年级上册数学分层作业设计 2.2 三角形的面积(附答案).docx
- 人教版九年级英语全一册单元速记•巧练Unit12【单元测试·基础卷】(原卷版+解析).docx
文档评论(0)