先在頁面中將droplistdown控制項autopostback=true,然後開始繫結資料
1、controller中執行繫結
ddltransactor.databind(uihelper.getdepartname());
2、uihelper中整理需要的資料
public static ddlbindinfo getdepartname()
;return info;
}3、basedatahelper中通過bll層取得詳細的資料
internal static dataset getdepartname()
4、bll層控制dat層與資料庫互動
///
/// 獲得資料列表
///
public dataset getlist(string strwhere)
5、dat層從資料庫中提取資料
///
/// 獲得資料列表
///
public dataset getlist(string strwhere)
return dbhelpersql.query(strsql.tostring());
}
C 控制項 MenuStrip控制項(選單控制項)
一 概述 選單通過存放按照一般主題分組的命令將功能公開給使用者。menustrip 控制項是此版本的 visual studio 和 net framework 中的新功能。使用該控制項,可以輕鬆建立 microsoft office 中那樣的選單。menustrip 控制項支援多文件介面 mdi ...
Literal控制項與Label控制項的對比
1 literal的一般用法,與label對比 msdn上的解釋 使用 system.web.ui.webcontrols.literal 控制項在網頁上保留顯示文字的位置。literal 控制項與 label 控制項類似,但 literal 控制項不允許對所顯示的文字應用樣式。可以通過設定 tex...
WinForm控制項與WPF控制項的互動
原文 winform控制項與wpf控制項的互動 這個問題其實也可以理解為 怎樣在wpf xaml中使用winform中的控制項 如picturebox 首先看看xaml 注意下面加粗的部分 c system.windows.forms.picturebox picturebox null void ...