管理員登錄系統(tǒng)

上傳人:青 文檔編號(hào):16558921 上傳時(shí)間:2020-10-11 格式:DOC 頁(yè)數(shù):16 大?。?8KB
收藏 版權(quán)申訴 舉報(bào) 下載
管理員登錄系統(tǒng)_第1頁(yè)
第1頁(yè) / 共16頁(yè)
管理員登錄系統(tǒng)_第2頁(yè)
第2頁(yè) / 共16頁(yè)
管理員登錄系統(tǒng)_第3頁(yè)
第3頁(yè) / 共16頁(yè)

下載文檔到電腦,查找使用更方便

5 積分

下載資源

還剩頁(yè)未讀,繼續(xù)閱讀

資源描述:

《管理員登錄系統(tǒng)》由會(huì)員分享,可在線閱讀,更多相關(guān)《管理員登錄系統(tǒng)(16頁(yè)珍藏版)》請(qǐng)?jiān)谘b配圖網(wǎng)上搜索。

1、管理員登錄系統(tǒng)   第一?。。。。?  1,(index.asp 用戶登陸頁(yè)面)  !-- #include file=conn.asp --  !-- 悠悠長(zhǎng)假期 --  html  head  meta http-equiv=Content-Type content=text/html; charset=gb2312  title會(huì)員/title  style type=text/css  !--  body,td,th {   font-family: 宋體;   font-size: 14px;

2、 }  --  /style  /head  body  center  p會(huì)員注冊(cè)系統(tǒng)/p  form name=form1 method=post action=login.asp  table width=34% border=0  tr  td width=33% height=30用戶名:/td  td width=67% height=30input name=username type=text id=username size=15/td  /tr  tr  td height=30密 碼:/td  td height=30input name=p

3、assword type=password id=password size=15/td  /tr  tr  td colspan=2 align=centerinput type=submit name=Submit value=確定  input type=reset name=Submit value=重置/td  /tr  tr  td colspan=2a href=reg.asp target=_self注冊(cè)/a/td  /tr  /table  /form  /center  /body  /html  2,(login.asp 用戶數(shù)據(jù)處理文件)

4、  !-- #include file=conn.asp --  %  打開(kāi)數(shù)據(jù)庫(kù)判斷用戶是否存在,info為表名,username為字段名  set rsc=server.createobject(adodb.recordset)  sqlc=select * from info where username=request.Form(username) and password=request.Form(password)  rsc.open sqlc,conn,1,1  session(username)=rsc(username)  session(password)=r

5、sc(password)  session.Timeout=30  set rsc=nothing  response.Redirect(change.asp)  如果用戶不存在,session(username)為空  %  3,(change.asp 用戶信息修改頁(yè)面)  !-- #include file=conn.asp --  html  head  meta http-equiv=Content-Type content=text/html; charset=gb2312  title修改/title  style type=text/css  !--

6、 body,td,th {   font-size: 14px;  }  --  /style/head  center  body  br  %  set rsc=server.createobject(adodb.recordset)  sqlc=select * from info where username=session(username) and password=session(password)  rsc.open sqlc,conn,1,1  nr=rsc(password)  username=rsc(username)  password=r

7、sc(password)  sex=rsc(sex)  qq=rsc(qq)  mail=rsc(mail)  add=rsc(add)  personalinfo=rsc(personalinfo)  vv=rsc(ntime)  set rsc=nothing  if nr= then  response.Redirect(index.asp)  end if  if strcomp(nr,request.Form(password))=0 then  response.Write(歡迎你!request.Form(username))  response.Wri

8、te(你是在vv注冊(cè)的)  session(username)=request.Form(username)  end if  if session(username)= then  response.Redirect(index.asp)  end if  %  form name=form1 method=post action=change.asp?ac=ch  table width=39% height=105 border=0  tr  td width=27% height=30用戶名:/td  td width=73% height=30input na

9、me=username type=text id=username value=%=username%  */td  /tr  tr  td height=30密nbsp; 碼:/td  td height=30input name=password type=text id=password value=%=password%  */td  /tr  tr  td height=30性nbsp; 別:/td  td height=30input name=sex type=text id=sex value=%=sex%/td  /tr  tr  td height

10、=30QQ:/td  td height=30input name=qq type=text id=qq value=%=qq%/td  /tr  tr  td height=30Mail:/td  td height=30input name=mail type=text id=mail value=%=mail%/td  /tr  tr  td height=30地nbsp; 址:/td  td height=30input name=add type=text id=add value=%=add%/td  /tr  tr  td介紹/td  tdtextare

11、a name=personalinfo cols=30 rows=6 id=personalinfo%=personalinfo%/textarea/td  /tr  tr  td /td  tdinput type=submit name=Submit value=修改  a href=change.asp?se=y target=_self退出系統(tǒng)/a/td  nbsp; % if strcomp(request.QueryString(se),y)=0 then  nbsp; session(username)=  nbsp; response.Redirect(inde

12、x.asp)  nbsp; end if  nbsp; %  /tr  /table  /form  %  if strcomp(request.QueryString(ac),ch)=0 then  set rs=server.createobject(adodb.recordset)  sql=select * from info where username=session(username)  rs.open sql,conn,1,3  rs(username)=request.Form(username)  rs(password)=request.Form(

13、password)  rs(mail)=request.Form(mail)  rs(sex)=request.Form(sex)  rs(qq)=request.Form(qq)  rs(add)=request.Form(add)  rs(personalinfo)=request.Form(personalinfo)  rs.update  set rs=nothing  response.Write(修改完成!)  end if  %  /body  /center  /html  4,(reg.asp 新用戶注冊(cè)頁(yè)面)  html  head  me

14、ta http-equiv=Content-Type content=text/html; charset=gb2312  title用戶注冊(cè)/title  style type=text/css  !--  body,td,th {   font-family: 宋體;   font-size: 14px;  }  --  /style  /head  body  center  用戶注冊(cè)br  %  =request.QueryString(msg)  %  form name=form1 method=post action=addnewdata.asp

15、?ac=adduser  table width=39% height=105 border=0  tr  td width=27% height=30用戶名:/td  td width=73% height=30input name=username type=text id=username  */td  /tr  tr  td height=30密碼:/td  td height=30input name=password type=password id=password  */td  /tr  tr  td height=30確定密碼:/td  td h

16、eight=30input name=password2 type=password id=password2  */td  /tr  tr  td height=30性別:/td  td height=30input name=sex type=text id=sex/td  /tr  tr  td height=30QQ:/td  td height=30input name=qq type=text id=qq/td  /tr  tr  td height=30Mail:/td  td height=30input name=mail type=text id=

17、mail/td  /tr  tr  td height=30地址:/td  td height=30input name=add type=text id=add/td  /tr  tr  td個(gè)人介紹/td  tdtextarea name=personalinfo cols=30 rows=6 id=personalinfo/textarea/td  /tr  tr  td /td  tdinput type=submit name=Submit value=提交/td  /tr  /table  /form  /center  /body  /html

18、  5,(addnewdata.asp 新用戶注冊(cè)數(shù)據(jù)處理文件)  !-- #include file=conn.asp --  html  head  meta http-equiv=Content-Type content=text/html; charset=gb2312  title成功/title  /head  body  %  ac=request.QueryString(ac)  msg=注冊(cè)錯(cuò)誤信息  if request.Form(username)= then  msg=msgbr用戶名不能為空  end if  if strcomp(cst

19、r(request.Form(password)),cstr(request.Form(password2)))0 then  msg=msgbr兩次密碼輸入不同  end if  if len(request.Form(password))6 then  msg=msgbr密碼太簡(jiǎn)單  end if  if strcomp(msg,注冊(cè)錯(cuò)誤信息)0 then  response.Redirect(reg.asp?msg=msg)  end if  if ac=adduser then  set rsc=server.createobject(adodb.records

20、et)  sql=select * from info where username=request.Form(username)  rsc.open sql,conn,1,1  ck=rsc(username)  set rsc=nothing  if ck then  msg=msgbr用戶名被人注冊(cè)  response.Redirect(reg.asp?msg=msg)  end if  dsql=select * from info where id is null  set rs=server.createobject(adodb.recordset)  rs.

21、open dsql,conn,1,3  rs.addnew  rs(username)=request.Form(username)  rs(password)=request.Form(password)  rs(mail)=request.Form(mail)  rs(sex)=request.Form(sex)  rs(qq)=request.Form(qq)  rs(add)=request.Form(add)  rs(personalinfo)=request.Form(personalinfo)  rs(ntime)=now  rs.update  set r

22、s=nothing  %  center  a href=index.asp target=_self注冊(cè)成功,點(diǎn)擊登陸/a  /center  %  end if  %  /body  /html  6,(conn.asp 數(shù)據(jù)庫(kù)連接文件)  %  連接數(shù)據(jù)庫(kù)開(kāi)始  dim conn,rs,sql  on error resume next  dbpath=server.mappath(userinfo.mdb)  set conn=server.createobject(adodb.connection)  conn.open PROVIDER=Microsoft.jet.OLEDB.4.0;data source=dbpath  創(chuàng)建記錄對(duì)象  set rs=server.createobject(adodb.recordset)  %  7,(userinfo.mdb ACCESS 數(shù)據(jù)庫(kù))  在ACCESS中建一個(gè)表,然后在這個(gè)表中建立字段名稱  表名:info  字段名稱 數(shù)據(jù)類型  id 自動(dòng)編號(hào)  username 文本  password 文本  sex 文本  quest 文本  qq 文本  mail 文本  personalinfo 文本  ntime 文本

展開(kāi)閱讀全文
溫馨提示:
1: 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
5. 裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

相關(guān)資源

更多
正為您匹配相似的精品文檔

相關(guān)搜索

關(guān)于我們 - 網(wǎng)站聲明 - 網(wǎng)站地圖 - 資源地圖 - 友情鏈接 - 網(wǎng)站客服 - 聯(lián)系我們

copyright@ 2023-2025  zhuangpeitu.com 裝配圖網(wǎng)版權(quán)所有   聯(lián)系電話:18123376007

備案號(hào):ICP2024067431號(hào)-1 川公網(wǎng)安備51140202000466號(hào)


本站為文檔C2C交易模式,即用戶上傳的文檔直接被用戶下載,本站只是中間服務(wù)平臺(tái),本站所有文檔下載所得的收益歸上傳人(含作者)所有。裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)上載內(nèi)容本身不做任何修改或編輯。若文檔所含內(nèi)容侵犯了您的版權(quán)或隱私,請(qǐng)立即通知裝配圖網(wǎng),我們立即給予刪除!