-
當(dāng)前位置:首頁 > 創(chuàng)意學(xué)院 > 技術(shù) > 專題列表 > 正文
html編寫注冊頁面(html做注冊頁面)
大家好!今天讓創(chuàng)意嶺的小編來大家介紹下關(guān)于html編寫注冊頁面的問題,以下是小編對此問題的歸納整理,讓我們一起來看看吧。
開始之前先推薦一個非常厲害的Ai人工智能工具,一鍵生成原創(chuàng)文章、方案、文案、工作計劃、工作報告、論文、代碼、作文、做題和對話答疑等等
只需要輸入關(guān)鍵詞,就能返回你想要的內(nèi)容,越精準(zhǔn),寫出的就越詳細,有微信小程序端、在線網(wǎng)頁版、PC客戶端
官網(wǎng):https://ai.de1919.com。
創(chuàng)意嶺作為行業(yè)內(nèi)優(yōu)秀的企業(yè),服務(wù)客戶遍布全球各地,如需了解相關(guān)業(yè)務(wù)請撥打電話175-8598-2043,或添加微信:1454722008
本文目錄:
一、用HTML編郵箱注冊網(wǎng)頁
<%
dim conn,connstr,rs
connstr="DBQ="+server.mappath("../db/dir.mdb")+";DefaultDir=;DRIVER={Microsoft Access Driver (*.mdb)};" '數(shù)據(jù)庫連接地址
set conn=server.createobject("ADODB.CONNECTION")
conn.open connstr
%>
<%
Dim action
action=Trim(Request("action"))
if action="usreg" then
Dim nid,pid,qq,nick,sex,mail,rsc,dsql,zNum
pws=Trim(Request.Form("pws"))
nid =Trim(Request.Form("nid"))
pid =Trim(Request.Form("pid"))
qq =Trim(Request.Form("qq"))
nick =Trim(Request.Form("nick"))
sex =Trim(Request.Form("sex"))
mail =Trim(Request.Form("mail"))
if request("GetCode")<>Session("GetCode") then
Response.Write "<script>alert('非法操作:驗證碼錯誤!');this.location.href='userreg.asp';</SCRIPT>"
Response.End
end if
if len(nid)>16 or len(nid)<2 then
Response.Write "<script>alert('賬戶名稱必需為2-16個字符!');history.back();</script>"
Response.End
end if
if len(pid)>16 or len(pid)<6 Then
Response.Write "<script>alert('密碼必需為6-16個字符!');history.back();</script>"
Response.End
end if
If nid="" or pid="" or qq="" or nick="" or sex="" or mail="" Then
Response.Write "<script>alert('資料不完整,請重新填寫!');history.back();</script>"
Response.End
end if
nid=request.Form("nid")
dsql="Select Top 1 * From users where nid='"& nid &"'"
set rsc=Conn.Execute(dsql)
if not rsc.eof then
Response.Write "<script>alert('該賬戶已經(jīng)存在!');this.location.href='userreg.asp';</SCRIPT>"
Response.End
Else '存在滿足條件的記錄
sql = "Select * from users"
Set rs = Server.CreateObject ("ADODB.Recordset")
rs.Open sql,conn,3,2
rs.addnew
Rs("nid")=nid
Rs("pid")=pid
Rs("qq")=qq
Rs("nick")=nick
Rs("mail")=mail
Rs("sex")=sex
Rs("dates")=date()
rs.update
rs.close
Set rs = Nothing
Session("nid")=nid
Session("nick")=nick
Response.Write "<script>alert('賬戶創(chuàng)建成功,馬上提交網(wǎng)站!');this.location.href='addsite.asp';</SCRIPT>"
End If
end if
%>
<script language="javascript">
function chkForm()
{
var pid = document.uform.pid.value;
var pws = document.uform.pws.value;
if(pid!=pws)
{
alert("兩次密碼輸入不一致");
return false;
}
return true;
}
</SCRIPT>
<form method="POST" action="?action=usreg" name="uform" onsubmit="return chkForm();">
<div style="width:610px;height:485px;float:right;">
<div class="us_logs">
<strong>如果已有賬戶 請<a href="login.asp" style="color:#0000FF;TEXT-DECORATION:none;">登陸</a></strong>
</div>
<div class="us_log">
<strong>用戶注冊:<span style="font-weight:normal;">(均為必填)</span></strong >
<li id="log1"><span>賬戶名稱:</span><label for="hitme"><input type="text" name="nid" size="25"></label></li>
<li id="log2"><span>由2-16位字母、數(shù)字、下劃線組成。</span></li>
<li id="log1"><span>設(shè)置密碼:</span><label for="hitme"><input type="password" name="pid" size="25"></label></li>
<li id="log2"><span>由6-16位字母、數(shù)字組成,區(qū)分大小寫。</span></li>
<li id="log1"><span>確認(rèn)密碼:</span><label for="hitme"><input type="password" name="pws" size="25"></label></li>
<li id="log1"><span>QQ:</span><label for="hitme"><input type="text" name="qq" size="25"></label></li>
<li id="log1"><span>昵稱:</span><label for="hitme"><input type="text" name="nick" size="25"></label></li>
<li id="log2"><span>用于對網(wǎng)站點評時顯示。</span></li>
<li id="log1"><span>性別:</span><label for="hitme"><input type="radio" value="男性" checked name="sex">男性 <input type="radio" name="sex" value="女性">女性</label></li>
<li id="log1"><span>電子郵箱:</span><label><input type="text" name="mail" size="25"></label></li>
<li id="log2"><span>例:mymail@example.com,用以找回密碼。</span></li>
<li id="log1"><span>驗證碼:</span><label for="hitme"><input type="text" id="GetCode" name="GetCode" size="4">
<img src="getcode.asp" alt="驗證碼,看不清楚?請點擊刷新驗證碼" height="10" style="cursor : pointer;" onclick="this.src='getcode.asp?t='+(new Date().getTime());" /></label></li>
<li id="log1"><span> </span><label for="hitme"><input type="submit" value="登陸" name="B1"> <input type="reset" value="重置" name="B2"></label></li>
</div>
</form>
</div>
我用著的,自己改改吧!
二、怎樣用HTML制作注冊的頁面?
html只能做前臺,后臺要php。如果只做前臺,畫個表格活著用div+css都可以
三、用html和jsp怎么做登陸注冊頁面
jsp語言只是嵌套了服務(wù)器端腳本語言,去掉的話和html一樣。寫代碼的話只是在html中寫好,套入jsp中就ok
四、使用HTML、CSS和JS制作一個論壇注冊頁面(使用表格布局),符合以下要求 1、注冊信息包括注冊名、密碼、性別
給你說哦,5分找到代碼的幾率很?。。?!你還是自己百度把 。
以上就是關(guān)于html編寫注冊頁面相關(guān)問題的回答。希望能幫到你,如有更多相關(guān)問題,您也可以聯(lián)系我們的客服進行咨詢,客服也會為您講解更多精彩的知識和內(nèi)容。
推薦閱讀:
html網(wǎng)頁設(shè)計代碼(html網(wǎng)頁設(shè)計代碼作業(yè))
杭州綜合1頻道節(jié)目預(yù)告(杭州htv1綜合頻道)
ChtGPT官網(wǎng)下載(cheto官網(wǎng)下載地址)