1. 程式人生 > >C# DropDownList繫結資料與清空

C# DropDownList繫結資料與清空

1.繫結DataSet
SqlConnection conn=new SqlConnection("server=.;uid=sa;pwd=;database= ");
string sql="select 型別表.id,type_name from 型別表,申請表 where 申請表.type_id=型別表.id";
DataSet ds=new DataSet();
SqlDataAdapter da=new SqlDataAdapter(sql,conn);
da.fill(ds,"型別表_申請表");
this.DropDownList1.DataSource=ds.Tables[0].DefaultView;
this.DropDownList1.DataTextField="type_name";
this.DropDownList1.DataValueField="id";
this.DropDownList1.DataBind();
//且新增一個預設值
ListItem item = new ListItem();
item.Text = "請選擇";
item.Value = "0";
DropDownList1.Items.Insert(0,item);
3.清空
this.dropdownlist.items.clear();

相關推薦

C# DropDownList資料

1.繫結DataSet SqlConnection conn=new SqlConnection("server=.;uid=sa;pwd=;database= "); string sql="select 型別表.id,type_name from 型別表,申請表 whe

C# combobx 資料

1.DataTable繫結 用DataTable直接繫結,只需要設定DataSource、DisplayMember、ValueMember三個屬性即可。 this.cmbConsume.DataSource = dtSuperMarket; this.cmbConsum

c# sql server dataGridView 資料

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.SqlClient; using System

.NET dropdownlist控制元件資料後,新增“全部”項,實現功能

DropDownList在從資料庫中得到資料來源繫結後,計劃為其新增一個"全部"或"不限"之類的項,新增方法現知的有兩種:   1:在指令碼中直接新增:<asp:ListItem Value="0">全部</asp:ListItem>,然後在DropDownLi

C# .NET treeView(樹形控制元件)資料的通用方法 (精)

DataTable dtCangKu = new DataTable(); //定義一張新表 BLL基礎資料.frm_CangKuZiLiao.frm_CangKuZiLiaoClient myfrm_CangKuZiLiaoClient = new BLL基礎資料.frm

C# Socket程式設計之IP

 Socket serverSocket=new Socket(AddressFamily.InterNetwork,SocketType.Stream,ProtocolType.Tcp);  //獲取Socket     &

C# TreeView從資料庫資料

封裝成一個函式,方便直接呼叫 //繫結TrreView private void InitModuleTree(DataTable dt) { //清空treeview上所有節點 this.tr

ASP.NET中dropdownlist 動態資料的二種方法

DataSet ds=new DataSet();SqlDataAdapter command=new SqlDataAdapter("",conn);...conn.Open();    //開啟資料庫連線command.SelectCommand.CommandText="Select a,b FROM 

DataGridView資料列表時

今天拖了一個DGV控制元件 然後綁定了一個List集合 奇怪的是如果 List.Count==0; 例如:List<string> namelst=new List<string>(); this.DataGridView1.DataSource=n

Easyui 下拉列表動態資料 C#

                      前端程式碼: <input id="ipt_typeName" name="ipt_typeName"/>                   js: $('#ipt_typeName').combobo

C#中comboBox資料集後事件中取值出System.data.dataRowView問題

寫了一段程式碼,希望通過comboBox選項自動關聯填充另外兩項輸入框時發現數據獲取異常 comboBox繫結資料來源程式碼如下:             this.cbKHMC.DataSource = dt;             this.cbKHMC.Displa

WPF學習筆記:(二)資料模式INotifyPropertyChanged介面

資料繫結模式共有四種:OneTime、OneWay、OneWayToSource和TwoWay,預設是TwoWay。一般來說,完成資料繫結要有三個要點:目標屬性是依賴屬性、繫結設定和實現了INotifyPropertyChanged介面的資料來源(資料上下文)。 One

清除節點

div bsp com pty body round itl rip har 1.介紹    2.程序 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-

C#.NET常見問題(FAQ)-如何stringbuilder

tostring write red response pen hello mov ges str 就紅色的代碼可以: System.Text.StringBuilder sb = new System.Text.StringBuilder(); sb.Append("

c# datagridview資料來源(BindingList<class>)中的現象 待查

現象1: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using Sys

Python-類的方法方法

類中定義的函式分成兩大類 一:繫結方法(繫結給誰,誰來呼叫就自動將它本身當作第一個引數傳入): 繫結到類的方法:用classmethod裝飾器裝飾的方法。 為類量身定製 類.boud_method(),自動將類當作第一個引數傳入 (其實物件也可呼叫,但仍將類當作第一個

DataBindingRecycleryViewListView

上一篇文章講解了databinding 的基礎用法,那麼這一篇我們來說說 databinding 的資料重新整理,以及與 RecycleryView 和ListView 的使用。 1.  我們先來說說資料重新整理是怎麼實現的。 public class Bean extends B

React 學習筆記 (一)(建立元件、資料屬性、迴圈資料、引入圖片)

使用 create-react-app 快速構建 React 開發環境 $ cnpm install -g create-react-app $ create-react-app my-app $ cd my-app/ $ npm start 建立元件、繫結資料、繫結屬性、迴圈資

SpringMVC——通過form表單資料

今天寫一個簡單的專案用到form表單繫結資料,這裡介紹一下方法。 首先需要配置好相應的檔案,這個步驟我這裡就不再贅述,直接進入主題。 我的controller程式碼如下: @RequestMapping(value ="views/html_jsp/revise_good",prod

連結串列的銷燬(轉)

連結串列本身是一個數據結構,清空是把連結串列中的元素清空,但連結串列還存在,銷燬則是把連結串列這個結構的記憶體都釋放了。。         清空是連結串列沒節點,但是連結串列還在,可以繼續插入節點。銷燬就是連結串列沒了,整個連結串列的空間