經常會遇到這種情況,dropdownlist控制項大部分用在繫結資料庫資料方面居多,但是常常要求它顯示在頁面上的的時候是乙個非資料庫中資料的內容,比如「請選擇」「全部xx」等等,而實現這種功能的方法簡單不簡單我就不多說了,直接看源**吧!
這裡假設要繫結的資料庫及欄位已經建好並確定
繫結資料庫欄位的**我就不具體寫出來了,假設我把它寫在乙個名稱為「info」的類中的bindlist()方法-->info.cs類
下面是源**
using system;
using system.collections;
using system.componentmodel;
using system.data;
using system.drawing;
using system.web;
using system.web.sessionstate;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.htmlcontrols;
using system.text.regularexpressions;
namespace client.page.clientinfo
// 在此處放置使用者**以初始化頁面
}#region web 窗體設計器生成的**
override protected void oninit(eventargs e)
///
/// 設計器支援所需的方法 - 不要使用**編輯器修改
/// 此方法的內容。
///
private void initializecomponent()
#endregion
public void bindgrid()}}
是不是很簡單
DropDownList的繫結方法
方法1 如果是固定的繫結,則直接在ddl下設定value值和text值即可繫結 方法2 如果是動態繫結,則需要取得名稱和value值後再與ddl繫結 例子 protected void bind string id dictionary dictionary new dictionary 某個類物件...
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...