DropDownList的繫結方法

2022-05-05 11:03:15 字數 392 閱讀 9931

方法1:

如果是固定的繫結,則直接在ddl下設定value值和text值即可繫結

方法2:

如果是動態繫結,則需要取得名稱和value值後再與ddl繫結

例子:protected void bind( string id)      

dictionary dictionary = new dictionary();   //某個類物件       

dataset ds = dictionary.fill(dictionary.dictionarytypeidcolumn.name + "=" + id);

if (ds != null && ds.tables.count > 0 && ds.tables[0].rows.count > 0)

}

dropdownlist資料繫結

在web.config配置檔案連線資料庫 新建乙個 sqlhelp 類 string scon system.configuration.configurationmanager.connectionstrings scon connectionstring 執行查詢的方法返回的是乙個dataset...

DropDownList繫結系統顏色

昨天晚上看到 http www.cnblogs.com overred archive 2006 03 24 357833.html的效果,感覺挺好看的.我結合列舉做了一下.可以顯示系統的全部顏色.看看 繫結字型 26system.drawing.text.installedfontcollecti...

關於樹型dropdownlist的繫結

開發產品的時候,需要用到樹性的dropdownlist,於是在網上找方法,找了很多,都不是很有效,於是自己寫了個!首先設計好資料庫,假設資料庫有三個欄位id,parentid,name。parentid是樹性結構必須的,就是節點的父節點id,假設跟節點id都是0。下面就可以繫結了!思路應該很簡單,就...