明輝手游網(wǎng)中心:是一個免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

Asp 單頁查詢數(shù)據(jù)庫

[摘要]<!-- #include file="../conn.asp" --><%dim rs,sql,x_name,x_pwd,x_countIf Request.Form("do")="ok" ThenIf Request...
 

<!-- #include file="../conn.asp" -->
<%
dim rs,sql,x_name,x_pwd,x_count
If Request.Form("do")="ok" Then
If Request.Form("user_name")="" Then
Response.Write("<script Language='javascript'>alert('對不起,請輸入用戶名!\t');history.go(-1);</script>")
Response.End()
Else
x_name = Request.Form("user_name")
End If
'↑ 叛斷用戶名是否為空!
If Request.Form("user_pwd")="" Then
Response.Write("<script Language='javascript'>alert('對不起,請輸入用戶密碼!\t');history.go(-1);</script>")
Response.End()
Else
x_pwd = Request.Form("user_pwd")
End If
'↑ 叛斷用戶密碼是否為空!
set rs = Server.Createobject("adodb.recordset")
sql="select * from [user] where user_name='"&x_name&"' and user_pwd='"&x_pwd&"'"
rs.open sql,conn,1,1
if not rs.Eof Then
session("s_name")=rs("user_name")
session("s_shen")=rs("shenfen")
session("s_shi")=rs("shijian")
Response.Redirect "infoin.asp"
Else
Response.Write("<script language='javascript'>alert('對不起,用戶或密碼錯誤!\t');history.go(-1);</script>")
Response.End()
End If

Else
%>

<title>--&gt;系統(tǒng)登錄</title>
<style type="text/css">
<!--
.zi {
 font-family: Arial, Helvetica, sans-serif;
 font-size: 10pt;
}
-->
</style>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p> &nbsp; </p>
<p>&nbsp;</p>   
   
 <table width="320" height="140" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#33CCFF" class="zi">
  <tr>
    <td colspan="2">--&gt;系統(tǒng)登錄</td>
   </tr>
   <form name="form1" method="post" action="index.asp">
  <tr bgcolor="#FFFFFF">
    <td width="72"><div align="center">帳號:</div></td>
    <td width="239">
      <input name="user_name" type="text" id="user_name">
    </td>
  </tr>
  <tr bgcolor="#FFFFFF">
    <td><div align="center">密碼:</div></td>
    <td><input name="user_pwd" type="password" id="user_pwd"></td>
  </tr>
  <tr bgcolor="#FFFFFF">
    <td>&nbsp;</td>
    <td><input type="submit" name="Submit" value="登 錄">
      <input type="button" name="Submit" value="關(guān) 閉" onClick="window.close()">
      <input name="do" type="hidden" id="do" value="ok"></td>
  </tr>
  </form>
  <tr>
    <td colspan="2"><div align="right">v1.00</div></td>
   </tr>
</table>
<%End If%>