|
|
|
สอบถามการนำค่่าจากฐานข้อมูล เพื่อให้มา select default selected ใน checkboxlist |
|
|
|
|
|
|
|
Code (C#)
public void SetValueCheckBoxList(CheckBoxList cbl, string sValues)
{
if (!string.IsNullOrEmpty(sValues))
{
ArrayList values = StringToArrayList(sValues);
foreach (ListItem li in cbl.Items)
{
if (values.Contains(li.Value))
li.Selected = true;
else
li.Selected = false;
}
}
}
private ArrayList StringToArrayList(string value)
{
ArrayList _al = new ArrayList();
string[] _s = value.Split(new char[] { ',' });
foreach (string item in _s)
_al.Add(item);
return _al;
}
SetValueCheckBoxList แล้วโยนค่า default เป็น xx,yy,zz
|
|
|
|
|
Date :
2011-09-19 22:14:07 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|