[ASP.NET] DropDownList 預設項目或是提示訊息

  • 4215
  • 0
  • 2010-08-14

[ASP.NET] DropDownList 預設項目或是提示訊息

有的時候我們必須要在下拉式選單,多一個預設選項或是提示訊息,上網搜尋了一下,

發現 Dotjum 哥的好文,忍不住就想偷學起來

連結在這邊:http://www.dotblogs.com.tw/dotjum/archive/2008/04/19/2953.aspx

 

我自己也來練習一下

若要預設選項並且值為 "0",可先將 DropDownList 的 AppendDataBoundItems 屬性設為 true

2010-08-10_144946

並且加入選項

2010-08-10_145323

 

 

另外;Dotjum 哥也提出了 這個功能只要是ListItem的項目都能使用,像是 ListBox、DropDownList 、CheckBoxList 、RadioButtonList、BulletedList

 

若你想將選項加入至最後一項,那就直接使用下方語法即可完成


DropDownList1.Items.Add(new ListItem("請選擇", "0"));

三小俠  小弟獻醜,歡迎指教