永发信息网

关于 vb.net 如何实现 点击网页登陆按钮

答案:1  悬赏:80  手机版
解决时间 2021-04-11 01:12
  • 提问者网友:感性作祟
  • 2021-04-10 12:28
<td onClick="javascript:setMD5Passwd();" onMouseOver="this.className=over" onMouseOut="this.className=out" > </td>"

这是按钮的源代码, 该如何实现呢?
最佳答案
  • 五星知识达人网友:封刀令
  • 2021-04-10 13:27
protected void Button1_Click(object sender, EventArgs e)<br>    {<br>    if (TextBox1.Text == &quot;&quot; || TextBox2.Text == &quot;&quot;)<br>    {<br>    Response.Write(&quot;&lt;script&gt;alert('用户名或密码不能为空!')&lt;/script&gt;&quot;);  //提示对话框<br>    }<br>    else<br>    {<br>    string ConStr = &quot;server=(local);user id=sa;pwd=123456;database=userdb&quot;;<br>    SqlConnection con = new SqlConnection(ConStr);<br>    string SqlStr = &quot;select * from mymember where sname = '&quot; + TextBox1.Text + &quot;' and  spwd = '&quot; + TextBox2.Text + &quot;'&quot;;    //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 &gt; 0)<br>    {<br>    Session[&quot;username&quot;] = TextBox1.Text;<br>    Response.Redirect(&quot;index.aspx&quot;);<br>    }<br>    else<br>    {<br>    Response.Write(&quot;&lt;script&gt;alert('用户名或密码错误,请重新登录!')&lt;/script&gt;&quot;);<br>    }<br>    }    //绑定GridView控件<br><br>}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯