📄 person.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="css/MainBorder.css" rel="stylesheet" type="text/css">
<title>员工信息</title>
<style type="text/css">
<!--
.STYLE3 {color: #FFFFFF; font-size: 14px; }
.STYLE7 {color: #FFFF00}
-->
</style>
</head>
<style type="text/css">
<!--
table {
margin-top: 40px;
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
}
#title {
font-size: 22px;
text-align: center;
}
.STYLE6 {font-size: 14px}
.STYLE8 {color: #FFFFFF}
-->
</style>
<body>
<!--#include file ="Connections/auto.asp"-->
<%
set RS = server.CreateObject("ADODB.Recordset")
Sname = "select *from Login,Message where Login.ID ='"& session("Rname") & "'and Message.ID ='"& session("Rname") & "'"
RS.open Sname , CN
%>
<form name="form1" method="post" action="Personchange.asp">
<table width="422" border="1" cellspacing="1" bgcolor="#666699" cellpadding="0" align="center">
<tr>
<td width="107" align="right" ><span class="STYLE3 STYLE6 STYLE7">员工编号: </span></td>
<td width="306" align="left"><span class="STYLE3 STYLE6 STYLE8">
<% response.write(RS("ID"))%>
<input type="hidden" name="Rname" value=<%=session("Rname")%>>
</span></td>
</tr>
<tr>
<td align="right"><span class="STYLE3 STYLE6 STYLE7">员工姓名: </span></td>
<td ><span class="STYLE3 STYLE6 STYLE8">
<% response.write(RS("Name"))%>
</span></td>
</tr>
<tr>
<td align="right"><span class="STYLE3 STYLE6 STYLE7">部门职务: </span></td>
<td ><span class="STYLE3 STYLE6 STYLE8">
<% response.write(RS("part"))%>
<% response.write(RS("Position"))%>
</span></td>
</tr>
<tr>
<td align="right"><span class="STYLE3 STYLE6 STYLE7">出生日期: </span></td>
<td ><span class="STYLE3 STYLE6 STYLE8">
<% response.write(RS("Data"))%>
</span></td>
</tr>
<tr>
<td align="right"><span class="STYLE3 STYLE6 STYLE7">身份证号: </span></td>
<td ><span class="STYLE3 STYLE6 STYLE8">
<% response.write(RS("PC"))%>
</span></td>
</tr>
<tr>
<td align="right" ><span class="STYLE3 STYLE6 STYLE7">家庭电话: </span></td>
<td ><span class="STYLE3 STYLE6 STYLE8">
<% response.write(RS("HomeTel"))%>
</span></td>
</tr>
<tr>
<td align="right"><span class="STYLE3 STYLE6 STYLE7">手机号码: </span></td>
<td ><span class="STYLE3 STYLE6 STYLE8">
<% response.write(RS("Tel"))%>
</span></td>
</tr>
<tr>
<td align="right" ><span class="STYLE3 STYLE6 STYLE7">家庭住址: </span></td>
<td ><span class="STYLE3 STYLE6 STYLE8">
<% response.write(RS("Address"))%>
</span></td>
</tr>
<tr>
<td align="right" ><span class="STYLE3 STYLE6 STYLE7">入公司时间: </span></td>
<td ><span class="STYLE3 STYLE6 STYLE8">
<% response.write(RS("Start"))%>
</span></td>
</tr>
<tr>
<td align="right"><span class="STYLE3 STYLE6 STYLE7">个人简历: </span></td>
<td ><span class="STYLE3 STYLE6 STYLE8">
<% response.write(RS("History"))%>
</span></td>
</tr>
</table>
<center>
<table width="442" height="40">
<tr>
<td width="444" height="34"><div align="center"> <input name="Submit" type="submit" class="s04" value="修改个人信息"></div></td>
</tr>
</table>
</center>
</form>
<!--#include file ="Connections/outauto.asp"-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -