webform 復合控件
RadioButtonList --單選
RadioButtonList1.DataSource = 等於一個集合 -- 指向數據源
RadioButtonList1.DataTextField = "NationName"; -- 網頁中顯示的內容
RadioButtonList1.DataValueField = "NationCode"; -- 給機器看的的內容
RadioButtonList1.DataBind(); -- 不加這句綁不上數據
一共4個屬性
enable
select
text
value
CheckBoxList --多選
CheckBoxList1.SelectedItem.Text --取值
AutopostBack = " true "; 自動提交
DropDownList --下拉
取值一樣
page_load事件在每一次頁面刷新的時候都會執行,會把數據重新綁定一次,再去執行按鈕事件
判斷頁面是否是第一次加載還是響應回發
if( ispostback == false )
事件的委托不能寫在這裏面
響應回發
跨頁面傳值
Response.Redirect("url。aspx?a=值"); a自定義名稱 不能加空格
接收一個string類型
string s=Request[a];
s就是傳過來的值
webform 復合控件