C#查询按钮代码
在cs页中根据姓名和工作单位写一段查询代码。请高手帮忙。下面的是.aspx页代码<asp:LabelID="Label1"runat="server"Height="15...
在cs页中根据 姓名 和 工作单位 写一段查询代码。请高手帮忙。下面的是.aspx页代码<asp:Label ID="Label1" runat="server" Height="15px" Text="姓名" Width="46px"></asp:Label>
<asp:TextBox ID="TextBox1" runat="server" Height="13px" Width="76px"></asp:TextBox>
<asp:Label ID="Label2" runat="server" Height="15px" Text="工作单位" Width="83px"></asp:Label>
<asp:TextBox ID="TextBox2" runat="server" Height="13" Width="76px"></asp:TextBox>
<asp:Button ID="Button1click" runat="server" Text="查询" OnClick="Button1click_Click" /> 展开
<asp:TextBox ID="TextBox1" runat="server" Height="13px" Width="76px"></asp:TextBox>
<asp:Label ID="Label2" runat="server" Height="15px" Text="工作单位" Width="83px"></asp:Label>
<asp:TextBox ID="TextBox2" runat="server" Height="13" Width="76px"></asp:TextBox>
<asp:Button ID="Button1click" runat="server" Text="查询" OnClick="Button1click_Click" /> 展开
2个回答
2013-11-13
展开全部
string name = TextBox1.Text;string depart = TextBox2.Text; SqlConnection conn = new SqlConnection ("数据库连接字符串");string sql = "select * from table1(你的表名) where 姓名='"+name+”‘ and 工作单位='"+depart+"'"; conn.Open(); SqlDataAdapter myadapter = new SqlDataAdapter(sql,myconnection); conn.Close(); DataSet myset = new DataSet(); myadapter.Fill(myset);//将查询的表填充到数据集(DataSet) return myset; 然后这个dataset里面就是你要查询的语句,这里面是以MSSQL数据库为例
2013-11-13
展开全部
主要是数据库连接,检索。做了一个例子,希望有所帮助。工程文件已发送到你qq邮箱。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询