asp.net(c#)如何把用SQL查询的结果赋值给变量
2个回答
展开全部
可以看看ADO.net相关的资料。
例子:
string connStr = System.Configuration.ConfigurationSettings.AppSettings[0];
SqlConnection conn = new SqlConnection(connStr);
conn.Open();
string sqlStr = "select 年龄 from [tablename] where 姓名 = '" + Request["姓名"]+"'" ;
SqlCommand cmd = new SqlCommand(sqlStr,conn);
SqlDataReader dr=cmd.ExecuteReader();
dr.Read();
string studentAge = dr["年龄"].ToString();
label.Text = studentAge;
.........
例子:
string connStr = System.Configuration.ConfigurationSettings.AppSettings[0];
SqlConnection conn = new SqlConnection(connStr);
conn.Open();
string sqlStr = "select 年龄 from [tablename] where 姓名 = '" + Request["姓名"]+"'" ;
SqlCommand cmd = new SqlCommand(sqlStr,conn);
SqlDataReader dr=cmd.ExecuteReader();
dr.Read();
string studentAge = dr["年龄"].ToString();
label.Text = studentAge;
.........
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |