RadioButtonList1对于数据库的调用

//投标绑定

   public void bindData()

    {

        string strSql = "select voteDetailsID,voteItem from voteDetails where ID=" + ID;

         SqlDataReader sdr = DBManager.getSdr(strSql);

 

        this.RadioButtonList1.DataSource = sdr;//指定数据源

        this.RadioButtonList1.DataTextField = "voteItem";//指定要显示的字段

        this.RadioButtonList1.DataValueField="voteDetailsID";//指定主键字段

        this.RadioButtonList1.DataBind();//绑定Rd,这一句一定要写,否则看不到

        sdr.Close();

 

}

//根据传入的SQL语句,执行并返回一个向前的数据流和DataReader

    public SqlDataReader getSdr(string strSql)

    {

        cmd.Connection = getCon();

        cmd.CommandText = strSql;

        SqlDataReader sdr = cmd.ExecuteReader();

        return sdr;

    }

 

 

你可能感兴趣的:(RadioButtonList1对于数据库的调用)