📄 modify.asp
字号:
rs.Movenext
wend
rs.close
set rs=nothing%>
<%=j%></font> 张</td>
</tr>
<tr class="unnamed1">
<td height="16"><div align="right"></div></td>
<td height="16"> </td>
</tr>
<tr class="unnamed1">
<td height="16"><div align="right">美女名片:</div></td>
<td height="16"><font color="#FF0000"><%=i-j%></font> 张</td>
</tr>
</table></td>
<td valign="top" background="images/index_r7_c5.gif"><img name="index_r7_c5" src="images/index_r7_c5.gif" width="5" height="553" border="0" alt=""></td>
<td colspan="8" valign="top" bgcolor="#FFFFFF" class="unnamed1"><table width="100%" border="0" class="unnamed1">
<tr>
<td><span lang="zh-cn"><font color="#CC0099">当前位置:</font><font color="#CC00CC">资料修改</font></span></td>
</tr>
<tr>
<td> <table width="100%" height="100%" border="0" align="center" cellpadding="0" cellspacing="2" class="unnamed1">
<form name="reg" method="post" action="regpost.asp" onsubmit="return flag">
<tr>
<td colspan="4" height="30"> <div align="center"><font color="#FF6600" size="3" face="黑体">一路飞扬在线网站
<font color="#009900">成员</font>个人信息</font></div></td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">同学ID</td>
<td width="3%" height="30"><font color="#FF0000">**</font></td>
<td width="67%" height="30"><font color="red"><%=userid%></font>
</td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">密码</td>
<td width="3%" height="30"><font color="#FF0000">**</font></td>
<td width="67%" height="30"> <input type="password" name="password" maxlength="20" value="<%=password%>" size="20">
(不超过20个字符) </td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">姓名</td>
<td width="3%" height="30"><font color="#FF0000">**</font></td>
<td width="67%" height="30"> <input type="text" name="truename" maxlength="50" value="<%=truename%>" size="20">
(你的真实姓名) </td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">性别</td>
<td width="3%" height="30"><font color="#FF0000">**</font></td>
<td width="67%" height="30">
<%if sex="男" then%>
<input type="radio" name="sex" value="男" checked>
男
<input type="radio" name="sex" value="女">
女 </td>
<%else%>
<input type="radio" name="sex" value="男">
男
<input type="radio" name="sex" value="女" checked>
女
<%end if%>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">生肖</td>
<td width="3%" height="30"><font color="#FF0000">**</font></td>
<td width="67%" height="30"> <select name="snxiao">
<%dim a(11)
a(0)="鼠"
a(1)="牛"
a(2)="虎"
a(3)="兔"
a(4)="龙"
a(5)="蛇"
a(6)="马"
a(7)="羊"
a(8)="猴"
a(9)="鸡"
a(10)="狗"
a(11)="猪"
for i=0 to 11
if a(i)=snxiao then
response.write "<option value="&a(i)&" selected>"&a(i)&"</option>"
else
response.write "<option value="&a(i)&">"&a(i)&"</option>"
end if
next
%>
</select></td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">血型</td>
<td width="3%" height="30"><font color="#FF0000">**</font></td>
<td width="67%" height="30"> <select name="blood">
<option value="A型" <%if blood="A型" then response.write" selected"%>>A型</option>
<option value="B型" <%if blood="B型" then response.write" selected"%>>B型</option>
<option value="AB型" <%if blood="AB型" then response.write" selected"%>>AB型</option>
<option value="O型" <%if blood="O型" then response.write" selected"%>>O型</option>
<option value="不懂" <%if blood="不懂" then response.write" selected"%>>不懂</option>
</select></td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">生日</td>
<td width="3%" height="30"><font color="#FF0000">**</font></td>
<td width="67%" height="30"> <select name="byear">
<%
dim i,c(2)
c(0)=DatePart("yyyy", birthday)
c(1)=DatePart("m", birthday)
c(2)=DatePart("d", birthday)
for i=1970 to 1990
if i=c(0) then
%>
<option value="<%=i%>" selected><%=i%></option>
<%
else
%>
<option value="<%=i%>"><%=i%></option>
<%end if%>
<%next%>
</select>
年
<select name="bmonth">
<%
dim j
for j=1 to 12
if j=c(1) then%>
<option value="<%=j%>" selected><%=j%></option>
<%else%>
<option value="<%=j%>"><%=j%></option>
<%end if%>
<%next%>
</select>
月
<select name="bday">
<%
dim k
for k=1 to 31
if k=c(2) then%>
<option value="<%=k%>" selected><%=k%></option>
<%else%>
<option value="<%=k%>"><%=k%></option>
<%end if%>
<%next%>
</select>
日(想收到礼物吗?想的话就要填。)</td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">星座</td>
<td width="3%" height="30"><font color="#FF0000">**</font></td>
<td width="67%" height="30"> <select name="xingzuo">
<option value="金牛座" <%if xingzuo="金牛座" then response.write" selected"%>>金牛座(4月19日-5月18日)</option>
<option value="双子座" <%if xingzuo="双子座" then response.write" selected"%>>双子座(5月19日-6月18日)</option>
<option value="巨蟹座" <%if xingzuo="巨蟹座" then response.write" selected"%>>巨蟹座(6月19日-7月18日)</option>
<option value="狮子座" <%if xingzuo="狮子座" then response.write" selected"%>>狮子座(7月19日-8月18日)</option>
<option value="处女座" <%if xingzuo="处女座" then response.write" selected"%>>处女座(8月19日-9月18日)</option>
<option value="天秤座" <%if xingzuo="天秤座" then response.write" selected"%>>天秤座(9月19日-10月18日)</option>
<option value="天蝎座" <%if xingzuo="天蝎座" then response.write" selected"%>>天蝎座(10月19日-11月18日)</option>
<option value="人马座" <%if xingzuo="人马座" then response.write" selected"%>>人马座(11月19日-12月18日)</option>
<option value="山羊座" <%if xingzuo="山羊座" then response.write" selected"%>>山羊座(12月19日-1月16日)</option>
<option value="水瓶座" <%if xingzuo="水瓶座" then response.write" selected"%>>水瓶座(1月17日-2月15日)</option>
<option value="双鱼座" <%if xingzuo="双鱼座" then response.write" selected"%>>双鱼座(2月16日-3月18日)</option>
<option value="白羊座" <%if xingzuo="白羊座" then response.write" selected"%>>白羊座(3月19日-4月18日)</option>
</select>
(是不是处男座?)</</td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30" valign="middle">头像<img src="<%=headpic%>" alt="个人形象代表" align="absmiddle"></td>
<td width="3%" height="30"><font color="#FF0000">**</font></td>
<td width="67%" height="30"><input name="picchan" type="checkbox" id="picchan" value="<%=headpic%>" checked>
保持不变 <img src="headpic/image46.gif" alt="个人形象代表" align="absmiddle" id="face" WIDTH="32" HEIGHT="32">
<select name="headpic" onChange="document.images['face'].src=options[selectedIndex].value;">
<%for i=1 to 65
if i=46 then%>
<option value="headpic/image<%=i%>.gif" selected>Image<%=i%></option>
<%else%>
<option value="headpic/image<%=i%>.gif">Image<%=i%></option>
<%end if
next%>
</select>
(请你选择喜欢的头像) </td>
</tr>
<tr>
<td width="11%" rowspan="2" height="30"> </td>
<td width="19%" rowspan="2" height="30">自定义头像<br>
(如果图像位置中有连接图片将以自定义的为主)</td>
<td width="3%" rowspan="2" height="30"> </td>
<td width="67%" height="30"><iframe name="ad" frameborder="0" width="300" height="50" scrolling="no" src="picupload.asp"></iframe></td>
</tr>
<tr>
<td width="67%" height="30"> 图象格式:gif,jpg(大小:32X32)<br>
图像位置:
<input type="text" name="mypic" value="不必填写" size="20">
(上传后不要更改) </td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">电话</td>
<td width="3%" height="30"> </td>
<td width="67%" height="30"> <input type="text" name="telephone" maxlength="20" value="<%=telephone%>" size="20">
(常住地的电话) </td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">手机</td>
<td width="3%" height="30"> </td>
<td width="67%" height="30"> <input type="text" name="mobile" maxlength="20" value="<%=mobile%>" size="20">
(你的个人手机) </td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">QQ号码</td>
<td width="3%" height="30"> </td>
<td width="67%" height="30"> <input type="text" name="oicq" maxlength="20" value="<%=oicq%>" size="20">
(最常用的QQ) </td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">E-mail</td>
<td width="3%" height="30"><font color="#FF0000">**</font></td>
<td width="67%" height="30"> <input type="text" name="email" maxlength="50" value="<%=email%>" size="20">
(最常用的E-mail)</td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">个人主页</td>
<td width="3%" height="30"> </td>
<td width="67%" height="30"> <input type="text" name="page" maxlength="50" value="<%=page%>" size="20">
</td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">邮政编码</td>
<td width="3%" height="30"><font color="#FF0000">**</font></td>
<td width="67%" height="30"> <input type="text" name="zipcode" maxlength="6" value="<%=zipcode%>" size="20">
</td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">常住地址</td>
<td width="3%" height="30"><font color="#FF0000">**</font></td>
<td width="67%" height="30"> <input type="text" name="address" maxlength="80" value="<%=address%>" size="20">
(起码该有个窝吧!是不是?) </td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">提示问题</td>
<td width="3%" height="30"><font color="#FF0000">**</font></td>
<td width="67%" height="30"> <input type="text" name="forq" maxlength="50" value="<%=forq%>" size="20">
(忘记密码就用这个找回!!!) </td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">问题答案</td>
<td width="3%" height="30"><font color="#FF0000">**</font></td>
<td width="67%" height="30"> <input type="text" name="foran" maxlength="50" value="<%=foran%>" size="20">
(一定要记住啊!!!) </td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">爱好</td>
<td width="3%" height="30"> </td>
<td width="67%" height="30"> <input type="text" name="aihao" maxlength="50" value="<%=aihao%>" size="20">
(没有爱好就不是人!) </td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">性格</td>
<td width="3%" height="30"> </td>
<td width="67%" height="30"> <input type="text" name="xinge" maxlength="50" value="<%=xinge%>" size="20">
(很多人想了解喔!) </td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">崇拜偶像</td>
<td width="3%" height="30"> </td>
<td width="67%" height="30"> <input type="text" name="idol" maxlength="50" value="<%=idol%>" size="20">
(别说是我!!!) </td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">最喜欢的音乐</td>
<td width="3%" height="30"> </td>
<td width="67%" height="30"> <input type="text" name="music" maxlength="50" value="<%=music%>" size="20">
(也许某人会送张CD给你)</td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">最难忘的格言</td>
<td width="3%" height="30"> </td>
<td width="67%" height="30"> <input type="text" name="geyan" maxlength="50" value="<%=geyan%>" size="20">
(有格言就比如有信仰) </td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">最喜欢的运动</td>
<td width="3%" height="30"> </td>
<td width="67%" height="30"> <input type="text" name="sports" maxlength="50" value="<%=sports%>" size="20">
(你是肉猪?菜猪?还是猪都不如?)</td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">最向往的职业</td>
<td width="3%" height="30"> </td>
<td width="67%" height="30"> <input type="text" name="job" maxlength="50" value="<%=job%>" size="20">
(唔...有前途,以后跟你混了!)</td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">最爱吃的食物</td>
<td width="3%" height="30"> </td>
<td width="67%" height="30"> <input type="text" name="loveat" maxlength="50" value="<%=loveat%>" size="20">
(介绍一下) </td>
</tr>
<tr>
<td width="11%" height="30"> </td>
<td width="19%" height="30">最爱去的地方</td>
<td width="3%" height="30"> </td>
<td width="67%" height="30"> <input type="text" name="goaddress" maxlength="50" value="<%=goaddress%>" size="20">
(不要什么地方都不想去)</td>
</tr>
<tr>
<td colspan="4" height="30"> </td>
</tr>
<tr valign="middle" align="center">
<td colspan="4" height="30"> <div align="center">
<input type="hidden" name="regflag" value="modify">
<input name="submit" type="submit" onClick="form_check(this.form)" value="提交">
<input name="reset" type="reset" value="重填">
</div></td>
</tr>
</form>
</table></td>
</tr>
</table>
<%
set rs=nothing
conn.close
set conn=nothing
end if
end if
%>
</td>
</tr>
<tr>
<td height="8" colspan="12"> <div align="center"><font color="#CC00CC" size="2">一路飞扬在线</font><font color="#009900" size="2"> <font color="#0033FF">http://wyy.9yz.com</font></font></div></td>
</tr>
<tr>
<td height="9" colspan="12"><div align="center"><font color="#009900" size="2">技术支持:一路飞扬在线</font></div></td>
</tr>
</table>
</body>
</html>aaa
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -