Bind a data source to DropDownList

Source: Internet
Author: User

During website development, we will use DropDownList to bind data. After we bind data, we want to display the Name, but after selection, the value is Id, we can use DataSet to read and bind data.

If (! Page. isPostBack) {// link to the database string connStr = ConfigurationManager. deleetask[ "Sunny"]; // create a SqlConnection conn = new SqlConnection (connStr); // The data to be queried string SQL = "select id, name from Caid "; // construct a SqlDataAdapter myAdapter = new SqlDataAdapter (SQL, conn); DataSet dataset = new DataSet (); try {// start to read the data source conn. open (); myAdapter. fill (dataset, "CaidTable");} catch (Exception) {throw;} finally {conn. close ();} // start to bind the data source. // specify the data source drpCaid used by DropDownList. dataSource = dataset. tables ["CaidTable"]. defaultView; // specify the fields in the DropDownList table. dataTextField = "name"; drpCaid. dataValueField = "id"; // bind data to drpCaid. dataBind (); drpCaid. autoPostBack = true ;}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.