C#Webform 控制項

來源:互聯網
上載者:User

標籤:

Html表單

文本類:

<input type="text" /> - 文字框 
<input type="password" /> - 密碼框 
<textarea></textarea> - 文本域 
<input type="hidden" /> - 隱藏欄位 

按鈕類:

<input type="button" value="按鈕1" />
<input type="submit" value="提交"  />
<input type="reset"  value="重設" />
<input type="image" src="" />

檔案類:

<input type="radio" /> <input type="checkbox" />

<select>

  <option></option>

</select>

 

複合控間的資料繫結、設定預設選中項、取值

RadionButtonList 和 DropDownList:

  資料繫結-DataSource

  例如:  List<Nation> list = new NationData().Select();
              RadioButtonList1.DataSource = list;
              RadioButtonList1.DataTextField = "NationName";
              RadioButtonList1.DataValueField = "NationCode";
              RadioButtonList1.DataBind();

  設定預設選中項

    改變  1、SelectedIndex-索引
          2、SelectedValue-值

  取值

    SelectedItem

      取決於控制項的綁定的值,它可以查詢到的資料值可以查詢到的資料,也就是說,如果是文字查詢的資料,也就是的    SelectedItem.SelectValue。

CheckBoxList和ListBox:

  資料繫結-遍曆資料集合(***Iteam)

  設定預設選中項-在資料添加的時候進行判斷,設定Selected屬性

  取值-遍曆所有的項,判斷如果是選中狀態那麼就把值取出來儲存

C#Webform 控制項

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.