|
|
|
จะ add/insert item ข้อมูลจาก sql เข้า dropdownlist โดยมีข้อมูลอยู่ก่อนจะแอดยังไง |
|
|
|
|
|
|
|
Code (VB.NET)
'*** Add & Insert New Item ***'
Dim strText,strValue As String
'*** Insert Item ***'
strText = ""
strValue = ""
Dim InsertItem As New ListItem(strText, strValue)
myDDL4.Items.Insert(0, InsertItem)
'*** Add Items ***'
strText = "Guy"
strValue = "G"
Dim AddItem As New ListItem(strText, strValue)
myDDL4.Items.Add(AddItem)
Go to : ASP.NET DropDownlist and DataBinding
|
|
|
|
|
Date :
2010-10-25 06:23:12 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|