62,266
社区成员
发帖
与我相关
我的任务
分享
con.Open();
SqlDataAdapter sd = new SqlDataAdapter ( "select * from fie_VoteList ", con);
DataSet ds=new DataSet();
sd.Fill(ds);
this.RadioButtonListVoteList.DataSource = ds.Tables[0];
this.RadioButtonListVoteList.DataValueField = "VLid ";
this.RadioButtonListVoteList.DataTextField = "VoteList ";
this.RadioButtonListVoteList.DataBind();
con.Close();
con.Open();
SqlDataAdapter sd = new SqlDataAdapter ( "select * from fie_VoteList ", con);
DataSet ds=new DataSet();
sd.Fill(ds);
this.RadioButtonListVoteList.DataSource = ds.Tables[0];
this.RadioButtonListVoteList.DataValueField = "VLid ";
this.RadioButtonListVoteList.DataTextField = "VoteList ";
this.RadioButtonListVoteList.DataBind();
con.Close();