扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
using System.Data.SqlClient; using System.Data.SqlTypes;// 添加命名空间 public string name1 { get { return TextBox9.Text.Trim(); } } //定义TextBox9中的内容为公用变量,设置文本框的Visible属性为False private void Page_Load(object sender, System.EventArgs e) { Page.RegisterStartupScript("focus", "<script language= javascript> document.getElementById('TextBox1').focus();</script>");//插入java脚本(聚焦TextBox1) if(!IsPostBack)// 检查是否是第一次加载本页 { SqlConnection myConnection=new SqlConnection("server=JXSERVER;uid=sa;pwd=1818;database=jx"); myConnection.Open();//连接数据库 SqlDataAdapter myAdapter=new SqlDataAdapter("select * from 车型",myConnection);// 建立myAdapter对象 DataSet myDataSet=new DataSet(); //建立一个myDataSet对象 myAdapter.Fill(myDataSet,"车型");//把执行select语句得到的记录添加到myDataSet中 DropDownList1.DataSource=myDataSet.Tables["车型"].DefaultView; //指定DropDownList1数据源 DropDownList1.DataTextField="车型"; //指定DropDownList1的文本值为“车型”表中‘车型’字段 DropDownList1.DataValueField="车型ID"; //指定DropDownList1的Value值为“车型”表中‘车型ID’字段 DropDownList1.DataBind();//绑定数据 DropDownList1.SelectedValue="C1";//指定DropDownList1的默认Value值为C1 myConnection.Close();//关闭数据库连接 } }// 在此处放置用户代码以初始化页面 /*由于在实现删改功能的同时可以实现查询功能因此仅以删改功能为例*/ private void Button2_Click(object sender, System.EventArgs e) { TextBox9.Text = "where 姓名 like '" + TextBox1.Text.Trim() + "'"; //定义姓名模糊查询条件语句 Server.Transfer("xy_search_win.aspx"); //传送姓名查询条件语句到第二个页面 } private void Button4_Click(object sender, System.EventArgs e) { TextBox9.Text = "where 证件号码= '" + TextBox2.Text.Trim() + "'"; //证件号码= TextBox2.Text的值 Server.Transfer("xy_search_win.aspx"); } private void Button6_Click(object sender, System.EventArgs e) { extBox9.Text = "where 学号= '" + TextBox3.Text.Trim() + "'"; //学号= TextBox3.Text的值 Server.Transfer("xy_search_win.aspx"); } private void Button8_Click(object sender, System.EventArgs e) { TextBox9.Text = "where 学号 like '"+TextBox4.Text.Trim()+"%'"; //学号与TextBox4.Text的值模糊匹配 Server.Transfer("xy_search_win.aspx"); } private void Button10_Click(object sender, System.EventArgs e) { TextBox9.Text = "where 报名日期 between '"+ TextBox5.Text.Trim() + "' and '" + TextBox6.Text.Trim() + "'"; //TextBox5.Text>=报名日期<=TextBox6.Text Server.Transfer("xy_search_win.aspx"); } private void Button12_Click(object sender, System.EventArgs e) { TextBox9.Text = "where 报考车种 = '"+DropDownList1.SelectedValue.ToString().Trim()+"'"; //报考车种=DropDownList1选中项的value值 Server.Transfer("xy_search_win.aspx"); } private void Button14_Click(object sender, System.EventArgs e) { TextBox9.Text = "where 欠款金额 between "+Convert.ToDecimal(TextBox7.Text.Trim())+" and "+Convert.ToDecimal(TextBox8.Text.Trim())+" "; //注意要将字符串类型转换成货币类型decimal Server.Transfer("xy_search_win.aspx"); } |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者