asp.net 执行 SQL 值显示的问题

asp.net执行selectagentid,agentgroup,agentipfromcatiagentwhereagentid='9999'如何将得到的结果显示在指... asp.net 执行
select agentid,agentgroup,agentip from catiagent where agentid='9999'
如何将得到的结果显示在指定的下面三个textbox
agentid.text
agentgroup.text
agentip.text
求最简单的方法
protected void Button1_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("Data Source=192.168.0.201;Initial Catalog=catinew;User ID=sa;Password=123!cati");
con.Open();
DataSet ds = new DataSet();
string sqlstr = "select agentid,agentgroup,currentip from catiagent where agentid='9999'";
SqlDataAdapter sda = new SqlDataAdapter(sqlstr, con);
sda.Fill(ds);
foreach (DataRow dr in ds.Tables[0].Rows)
{
agentid.Text += dr["agentid"] + "_";
agentgroup.Text += dr["agentgroup"] + "_";
agentip.Text += dr["currentip"] + "_";
}
sda.Dispose();
ds.Dispose();
con.Close();
这个方法不行呀

}
展开
 我来答
百度网友aac01dd
2011-11-17 · TA获得超过101个赞
知道小有建树答主
回答量:220
采纳率:0%
帮助的人:194万
展开全部
用datatable dt=接收查询语句
if(dt.Tables[0].Rows.Count>0){
agentid.text=dt.rows[0]["agentid"].Tosring();
agentgroup.text=dt.rows[0]["agentgroup"].Tosring();
agentip.text=dt.rows[0]["agentip"].Tosring();
}
追问
datatable如何使用,写个完整点的好吗
我感觉您的这个方法比较的简单,成功的话,再加20分,急
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
手机用户23462
2011-11-17
知道答主
回答量:21
采纳率:0%
帮助的人:6.7万
展开全部
不要用DataSet,DataTable实质上也是DataSet。查询尽量用SqlDataReader。效率好很多。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
oypx1234
2011-11-17 · 超过19用户采纳过TA的回答
知道答主
回答量:49
采纳率:0%
帮助的人:45万
展开全部
<asp:TextBox ID="agentid" Text="<%#Eval('agentid') %>" runat="server"></asp:TextBox>

<asp:TextBox ID="agentgroup" Text="<%#Eval('agentgroup') %>" runat="server"></asp:TextBox>

<asp:TextBox ID="agentip" Text="<%#Eval('agentip') %>" runat="server"></asp:TextBox>
更多追问追答
追问
不要意思,我要的是CS,点击button1后就执行select agentid,agentgroup,agentip from catiagent where agentid='9999'
然后显示其相应的值
追答
SqlConnection con = new SqlConnection(".....");
con.Open();
DataSet ds = new DataSet();
string sqlstr = "select agentid,agentgroup,agentip from catiagent where agentid='9999'";
SqlDataAdapter sda = new SqlDataAdapter(sqlstr,con);
sda.Fill(ds);
foreach (DataRow dr in ds.Tables[0].Rows)
{
agentid.text +=dr["agentid"]+ "_";
agentgroup.text += dr["agentgroup"] + "_";
agentip.text += dr["agentip"] + "_";
}
sda.Dispose();
ds.Dispose();
con.Close();
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式