用C#.net在WEB上实现一个搜索功能
一个名为Student的表,表里包括Num,Name,Sex,Info,再从TextBox里输入一个字段搜索出全部信息,再用GridView显示出来...
一个名为Student的表,表里包括Num,Name,Sex,Info,再从TextBox里输入一个字段搜索出全部信息,再用GridView显示出来
展开
2个回答
展开全部
楼上错了 首先 WEB里没有DataGridView 应该是GridView
public partial class _Default : System.Web.UI.Page
{
SqlConnection conn;
protected void Page_Load(object sender, EventArgs e)
{
txtCurrent.Text = Session["Current"].ToString();
txtTotal.Text = Application["Total"].ToString();
}
protected void Button1_Click(object sender, EventArgs e)
{
string strSql = "select * from Student where Num=" + Int32.Parse(txt.Text);
GridView1.DataSource = ds;
GridView1.DataBind();
}
public DataSet getbind(string strSql)
{
conn = new SqlConnection("server=(Loval);uid=youname;pwd=youpassword;database=youDB");
conn.Open();
SqlDataAdapter sda = new SqlDataAdapter(strSql);
DataSet ds = new DataSet();
sda.Fill(ds);
return ds;
}
}
刚给你写的 大体是对的 你自己研究一下
public partial class _Default : System.Web.UI.Page
{
SqlConnection conn;
protected void Page_Load(object sender, EventArgs e)
{
txtCurrent.Text = Session["Current"].ToString();
txtTotal.Text = Application["Total"].ToString();
}
protected void Button1_Click(object sender, EventArgs e)
{
string strSql = "select * from Student where Num=" + Int32.Parse(txt.Text);
GridView1.DataSource = ds;
GridView1.DataBind();
}
public DataSet getbind(string strSql)
{
conn = new SqlConnection("server=(Loval);uid=youname;pwd=youpassword;database=youDB");
conn.Open();
SqlDataAdapter sda = new SqlDataAdapter(strSql);
DataSet ds = new DataSet();
sda.Fill(ds);
return ds;
}
}
刚给你写的 大体是对的 你自己研究一下
展开全部
你是说高级控键DataGridView吗?
先写SQl语句
private SqlDataAdapter da;
private DataSet ds;//公共的
String Sql="select Num,Name,Sex,Info from Student where 条件";
da = new SqlDataAdapter(sql, 数据库连接);
da.Fill(ds, "名字");
(DataGridView名字)dgvQuestion.DataSource = ds.Tables["名字"];
说不太清楚!有问题留言给我
先写SQl语句
private SqlDataAdapter da;
private DataSet ds;//公共的
String Sql="select Num,Name,Sex,Info from Student where 条件";
da = new SqlDataAdapter(sql, 数据库连接);
da.Fill(ds, "名字");
(DataGridView名字)dgvQuestion.DataSource = ds.Tables["名字"];
说不太清楚!有问题留言给我
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询