我知道我现在只是赋值了语句,但是我不清楚怎么把sql查询的结果拿出来给label6显示,求解答SqlConnection conn = null;try {string connStr = @"Data Source=.;Initial Catalog=LJXYbus;Integrated Security=True;";conn = new SqlConnection(connStr);conn.Open();string sql = "select sum(People) from Convention where YuYueDate='" + TextBox1.Text + "'and Time='" + DropDownList1.Text.ToString() + "'";SqlCommand cmd = new SqlCommand(sql, conn);SqlDataReader reader = cmd.ExecuteReader();if (reader.Read()) {Label6.Text =sql;}
asp.net如何从数据库读取一个字段的值然后赋值给Lable
document.form.label.value=<%=rs("字段名")%>
ASP.NET中怎样让Label控件显示数据库中某条记录中指定的字段
给你写个最简单的例子比如说页面上有三个TextBox控件!\/\/连接字符串 string ConString = ConfigurationManager.ConnectionStrings["DemoConnectionString"].ConnectionString.ToString();protected void Page_Load(object sender, EventArgs e){ string sql = "select username,password,sex from TestDB wher id...
ASP.NET中如何将SQL查询的值赋予一个label
SqlConnection myconn=new SqlConnection("server=服务器;uid=数据库用户;pwd=数据库密码;database=数据库");myconn.Open();string sql="select * from userIn";Sqlcommand mycom=new Sqlcommand(sql,myconn);mycom.Fill(dt);myconn.Close();\/\/至此所有查询出来的数据放入了datatable里,现在随便你...
ASP.NET 中怎么用DataReader把数据库的数据读到lable上
Label2.Text = sdr["text"].ToString();}
在asp.net中把多个值循环显示在Label控件上
this.LabelID.text=type+rule+date+varvalue+match;
asp.net 点击datalist列表任何一处,怎样获取当前行的索引并把索引输出到...
你绑定的时候是怎么绑定的,给个简单的例子,如果是通过<tr>一行一行绑定的,给<tr>一个ID,在加上服务器标记如:<table> <asp:DataList ID="DataList1" runat="server" Width="300px" Height="200px" OnItemDataBound="DataList1_OnItemDataBound"> <ItemTemplate> <tr id="tt1" runat="...
请教下有关于asp.net中把数据库里的数据读取到label控件中
A页面里的buttion1 和 buttion2 只是传不同的参数到B页面 在B页面执行sql语句 然后给B页面的lable赋值。
ASP.net(C#) 从数据库提取数据 如何显示到网页指定位置
<\/asp:Repeater> <\/ul> <\/div> 你看这个,最外层有个div,你可固定这个div的位置,然后里面是ul-li列表,还有个Repeater标签,在后台应该先绑定Repeater,然后<%# Eval("Title")%>这个是需要显示数据源中的某个字段,这里显示的是标题(Title),明白了嘛?你仔细想想,很好明白的!
ASP.net 用Label 显示值
最好的方法是用querystirng传值,就是上面所说的post的方式传值,那样不至于降低效率。具体方发就是:在A网页中的Button_click事件中写:respons.redirect(stirng.format("B.aspx?txt={0}",TextBox.Text));然后再B页面中接收,再Page_Load中写:label.text=request.QueryString["txt"];txt这个你...
ASP.NET中如何取得DATALIST中已经绑定的LABEL值?
"Productname") as Label;string pname = lbl.Text;} \/ protected void DataList1_ItemCommand(object source, DataListCommandEventArgs e){ Label lbl = e.Item.FindControl("Productname") as Label;string pname = lbl.Text;} 我相信你看得懂的,foreach是遍历,下面的是ItemCommand事件....