📄 myaccount.asp
字号:
<!--#include file=../conn.asp-->
<!--#include file=cookies.asp-->
<!--#include file=top.asp-->
<%
dim sql
dim rs
dim username
dim comid,i
username=request.cookies("ijob")("username")
comid=request.cookies("ijob")("comid")
set rs=server.createobject("adodb.recordset")
sql="select username,comid,Password,companyname,mailbox from [company] where comid='"&comid&"' and UserName='"&UserName&"'"
rs.open sql,conn,1,1
if rs.eof or rs.bof then
response.write "错误,该用户不存在!<br> "
response.end
end if
%>
<link rel="stylesheet" type="text/css" href="../1.css">
<title>企业招聘管理器::修改密码</title>
<body topmargin="0" leftmargin="0">
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="770" height="236">
<tr>
<td width="147" height="236" valign="top">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
<tr>
<td width="100%"><!--#include file=left.asp--></td>
</tr>
</table>
</td>
<td width="27" height="236" valign="top"> </td>
<td width="580" height="236" valign="top">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
<tr>
<td width="100%"> </td>
</tr>
<tr>
<td width="100%">
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="464" height="135">
<form action="changepassword.asp" name="pass" method="POST">
<tr>
<td height="24" width="464" colspan="2" background="../img/bj.gif">
<p align="center"><b>
<span style="FONT-SIZE: 10pt">公司帐号</span></b></td>
</tr>
<tr>
<td vAlign="top" height="17" width="94">
用 户 名:</td>
<td vAlign="top" width="370" height="17"><font color="#F06000">
<b><%=username%></b></font></td>
</tr>
<tr>
<td height="25" width="94">
密 码:</td>
<td width="370" height="25">
<INPUT
style="FONT-SIZE: 11px; FONT-FAMILY: Verdana" maxLength=16 size=21
name=Password1 value="<%=rs("Password")%>" type="password">
<input border="0" src="../img/editpass.gif" name="I1" loop="infinite" type="image" width="68" height="20"></td>
</tr>
<tr>
<td height="25" width="94">
公司名称:</td>
<td width="370" height="25">
<b><font color="#F06000"><%if rs("companyname")<>"" then%><%=rs("companyname")%><%else%></font><font color="#C0C0C0">还没有填写</font><font color="#F06000"><%end if%></font></b></td>
</tr>
<tr>
<td height="25" width="94" background="../img/bj.gif">
电子邮件:</td>
<td width="370" height="25" background="../img/bj.gif">
<b><font color="#F06000"><%=rs("mailbox")%></font></b></td>
</tr>
</form>
</table>
</center>
</div>
</td>
</tr>
<tr>
<td width="100%" height="25">
<p align="center"><b>注意</b>:<font color="#FF0000"><b>密码已加密,要修改请输入新密码后提交</b>!</font></td>
</tr>
</table>
</td>
<td width="16" height="236" valign="top"> </td>
</tr>
</table>
</center>
</div>
<!--#include file=copyright.asp-->
<%
rs.close
set rs=nothing
call closedb
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -