2015年1月23日 星期五

ASP.NET DropDownList 程式碼新增Item



            Dim dt1 As DataTable=Nothing
            ....假設dt1已經從資料庫中取回項目資料....
            DropDownList1.DataTextField = "html_text" '顯示在網頁上的項目名稱
            DropDownList1.DataValueField = "value"  '項目的值
            DropDownList1.DataSource = dt1.DefaultView
            DropDownList1.DataBind()  '資料繫結
            '資料繫結後在DropDownList第一個項目前,再插入新的項目
            DropDownList1.Items.Insert(0, New ListItem("請選擇審核人", "0"))

沒有留言:

張貼留言