最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
DropDownList 控件 DataTextField 和 DataValueField 分开绑
时间:2022-06-30 10:20:04 编辑:袖梨 来源:一聚教程网
Sub Page_Load
If Not Page.IsPostBack Then
Dim URLs = New SortedList()
URLs.Add("Google", "http://www.g**o*ogle.com")
URLs.Add("MSN", "http://search.ms***n.com")
URLs.Add("Yahoo", "http://www.*y*ah*oo.com")
URLs.Add("Lycos", "http://www.l***ycos.com")
URLs.Add("AltaVista", "http://www.**alt*avista.com")
URLs.Add("Excite", "http://www.**excit*e.com")
'-- Bind SortedList to controls
RadioButtons.DataSource = URLs
RadioButtons.DataTextField = "Key"
RadioButtons.DataValueField = "Value"
RadioButtons.DataBind()
CheckBoxes.DataSource = URLs
CheckBoxes.DataTextField = "Key"
CheckBoxes.DataValueField = "Value"
CheckBoxes.DataBind()
DropDownList.DataSource = URLs
DropDownList.DataTextField = "Key"
DropDownList.DataValueField = "Value"
DropDownList.DataBind()
ListBox.DataSource = URLs
ListBox.DataTextField = "Key"
ListBox.DataValueField = "Value"
ListBox.DataBind()
End If
End Sub
相关文章
- 地狱即我们调查道具怎么用 获取方式及使用方法一览 09-18
- 无主之地4欧力格怎么打 原始秘藏护卫打法攻略 09-18
- 无主之地4拉迪克斯怎么打 原始秘藏护卫打法攻略 09-18
- 地狱即我们调查道具怎么获取 获取方式及使用方法一览 09-18
- 无主之地4伊瑟图斯怎么打 原始秘藏护卫打法攻略 09-18
- 地狱即我们调查道具有什么 获取方式及使用方法一览 09-18