ADO Net Database ASP.Net Tutorial

<%@ Page Language="C#" %>
<%@ import Namespace="System.Data" %>
<%@ import Namespace="System.Data.SqlClient" %>

    SqlDataReader myReader;
    
    void Page_Load(object sender, EventArgs e)
    {
       string ConnectionString = Convert.ToString(ConfigurationSettings.AppSettings["MSDEConnectString"]);
       string CommandText = "SELECT PublisherID, PublisherName FROM Publisher";
    
       SqlConnection myConnection = new SqlConnection(ConnectionString);
       SqlCommand myCommand = new SqlCommand(CommandText, myConnection);
    
       try
       {
          myConnection.Open();
    
          myReader = myCommand.ExecuteReader();
    
          ListBox1.DataBind();
          myReader.Close();
       }catch (Exception ex) {
          throw (ex);
       } finally {
          myConnection.Close();
       }
    }





    
        

Pulling Values From Data Bound Lists 
        


        

A CheckBoxList
        


        
            ">
        
        

A RadioButtonList
        


        
            ">
        
        

A DropDownList
        


        
            ">
        
        

A ListBox
        


        
            " Rows="5">
        
    


File: Web.config