<td onClick="javascript:setMD5Passwd();" onMouseOver="this.className=over" onMouseOut="this.className=out" > </td>"
这是按钮的源代码, 该如何实现呢?
关于 vb.net 如何实现 点击网页登陆按钮
答案:1 悬赏:80 手机版
解决时间 2021-04-11 01:12
- 提问者网友:感性作祟
- 2021-04-10 12:28
最佳答案
- 五星知识达人网友:封刀令
- 2021-04-10 13:27
protected void Button1_Click(object sender, EventArgs e)<br> {<br> if (TextBox1.Text == "" || TextBox2.Text == "")<br> {<br> Response.Write("<script>alert('用户名或密码不能为空!')</script>"); //提示对话框<br> }<br> else<br> {<br> string ConStr = "server=(local);user id=sa;pwd=123456;database=userdb";<br> SqlConnection con = new SqlConnection(ConStr);<br> string SqlStr = "select * from mymember where sname = '" + TextBox1.Text + "' and spwd = '" + TextBox2.Text + "'"; //Select查询语句<br> SqlDataAdapter ada = new SqlDataAdapter(SqlStr, con);<br> con.Open(); //打开连接<br> DataSet ds = new DataSet();<br> ada.Fill(ds);<br> if (ds.Tables[0].Rows.Count > 0)<br> {<br> Session["username"] = TextBox1.Text;<br> Response.Redirect("index.aspx");<br> }<br> else<br> {<br> Response.Write("<script>alert('用户名或密码错误,请重新登录!')</script>");<br> }<br> } //绑定GridView控件<br><br>}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯