用户代码未处理ArgumentException

protectedvoidButton1_Click1(objectsender,EventArgse){OleDbConnectionconn=newOleDbConn... protected void Button1_Click1(object sender, EventArgs e) { OleDbConnection conn = new OleDbConnection(strConnection); try { conn.Open(); string sql = "select * from Users where user_id='" + this.TextBox1.Text + "' and user_password='" + this.TextBox2.Text + "'"; OleDbCommand cmd = new OleDbCommand(sql, conn); OleDbDataReader dr = cmd.ExecuteReader(); if (this.TextBox1.Text == "" || this.TextBox2.Text == "") { Response.Write("<script>alter('帐号或者密码不能为空')</script>"); } else if (this.TextBox2.Text.Length < 6) { Response.Write("<script>alter('密码不能低于6位')</script>"); } else { if (dr.Read() == true) { //if(dr.GetInt32(2)==0) if ((int)dr["user_power"] == 0) { Response.Redirect("XtEdit.aspx"); } else if ((int)dr["user_power"] == 1) { Response.Redirect("XtEdit.aspx"); } } else { Response.Write("<script>alter('用户名或者密码错误,重新登录')</script>"); } } conn.Close(); } catch (Exception) { Response.Write("<script>alter('数据库链接失败')</script>"); } } 展开
 我来答
索马里军团1997
2014-06-22 · TA获得超过214个赞
知道答主
回答量:137
采纳率:50%
帮助的人:65.9万
展开全部
catch (Exception e) { Response.Write("<script>alter('数据库链接失败')</script>"); } catch(Exception e) 的含意是:如果运行中产生错误,则把错误信息保存在变量e中(以便显示给用户或做它用)。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式