⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 employee_modify.asp

📁 北京华信东方网络办公系统
💻 ASP
字号:
<!--#include file= "../dbase.asp"-->
<!--#include file= "../department/department_function.asp"-->
<!--#include file= "../duty/duty_function.asp"-->
<!--#include file= "employee_function.asp"-->
<html>
<head>
<meta name=vs_targetSchema content="http://schemas.microsoft.com/intellisense/ie5">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>员工信息更改</title>
<link href="../MSTYLE.CSS" rel="stylesheet" type="text/css">
</head>
<%
if request.QueryString.Item("ID") = "" then
ID = 0
else
ID = request.QueryString.Item("ID")
end if
Info = employeeInfo(ID)
if isnull(Info) then
response.Redirect("employee_addnew.asp")
response.End()
end if
%>
<body>
<FORM name="From1" method=post ID="Form1" action="employee_deal.asp?DealWay=modify&Condition=<%=Info(0,0)%>">
<p align="center"></p>
  <table width="600"  cellpadding=3 cellspacing=1 border=0 align="center" bgcolor=#0099cc>
    <TBODY>
      <tr> 
        <td height="24" colspan="4" align="center" bgcolor="99ccff"><b>更 正 员 工 资 料 表</b></td>
      </tr>
      <tr bgcolor="f2f8ff"> 
        <td width="150" bgcolor="f2f8ff">*<strong>工号:</strong><br>
六位工号如:000081</td>
        <td width="150"> <input name="c_UserID" type="text" id="c_UserID" size="7" maxlength="6" value="<%=Info(1,0)%>">
          &nbsp;<input type="button"  value="检测工号"></td>
        <td width="150" bgcolor="f2f8ff">*<strong>姓名:</strong></td>
        <td width="150"> <input name="v_UserTrueName" type="text" id="v_UserTrueName" value="<%=Info(2,0)%>"></td>
      </tr>
      <tr bgcolor="f2f8ff"> 
        <td width="150" bgcolor="f2f8ff"><strong>部门:</strong></td>
        <td width="150"><select name="v_DepartmentName" id="v_DepartmentName">
            <%
rstree=SelectDepartmentArray(Info(10,0))
if not isnull(rstree) then
call DepartmentSelect(rstree,"Name")
end if
%></select></td>
        <td width="150" bgcolor="f2f8ff"><strong>职务:</strong></td>
        <td width="150"><select name="v_duty" id="v_duty">
            <%
rstree=DutyArray(Info(11,0))
if not isnull(rstree) then
call DutySelect(rstree,"Name")
end if
%>
          </select></td>
      </tr>
      <tr bgcolor="f2f8ff"> 
        <td width="150" bgcolor="f2f8ff"><strong>电话:</strong></td>
        <td width="150"> <input name="v_OtherTelNum" type="text" id="v_OtherTelNum" value="<%=Info(8,0)%>"></td>
        <td width="150" bgcolor="f2f8ff"><strong>Email:</strong></td>
        <td width="150"> <input name="v_Email" type="text" id="v_Email" value="<%=Info(9,0)%>"></td>
      </tr>
      <tr bgcolor="f2f8ff"> 
        <td width="150" bgcolor="f2f8ff"><strong>手机:</strong><br>
多个号码用“|”分开</td>
        <td width="150"> <input name="v_MobileNumber" type="text" id="v_MobileNumber" maxlength="50" value="<%=Info(7,0)%>"></td>
        <td width="150" bgcolor="f2f8ff"><strong>常驻地:</strong><br>
员工办公地点</td>
        <td width="150"> <input name="v_WorkPlace" type="text" id="v_WorkPlace" value="<%=Info(14,0)%>"></td>
      </tr>
	  <tr bgcolor="f2f8ff"> 
        <td width="150" height="44"><strong>主要职责:</strong></td>
        <td height="44" colspan="3"><TEXTAREA name=v_remark cols=60 rows=5 wrap=PHYSICAL id="v_remark"><%=Info(12,0)%></TEXTAREA></td>
      </tr>
      <tr bgcolor="f2f8ff"> 
        <td width="150"><strong>性别:</strong></td>
        <td width="150"> <input name="c_Sex" type="radio" value="男" <%if Info(3,0)="男" then response.Write("checked")%>>
          <input type="radio" name="c_Sex" value="女" <%if Info(3,0)="女" then response.Write("checked")%>>
          女</td>
        <td width="150" bgcolor="f2f8ff"><strong>民族:</strong></td>
        <td width="150"> <input name="v_Peoples" type="text" id="v_Peoples" value="<%=Info(4,0)%>"></td>
      </tr>
      <tr bgcolor="f2f8ff"> 
        <td width="150"><strong>出生日期:</strong></td>
        <td width="150"><input id="d_Birthday" name="d_Birthday" type="text"  value="<%=Info(6,0)%>">
          <label language=javascript onClick="ChoiceDate('calendar.asp?form=Form1&field=d_birthday');" style="cursor: hand;" title="选择日期">选</label></td>
        <td width="150"><strong>籍贯:</strong></td>
        <td width="150"><input name="v_NativePlace" type="text" id="v_NativePlace" value="<%=Info(5,0)%>"></td>
      </tr>
      <tr bgcolor="f2f8ff"> 
        <td width="150"><strong>照片:</strong></td>
        <td colspan="3" bgcolor="f2f8ff"><iframe name="ad" frameborder=0 width=300 height=25 scrolling=no src=photo_upload.asp></iframe> 
          <br>
          图像位置: 
          <input type="TEXT" name="v_PicturePath" size=20 maxlength=100 ID="Text1" value="<%=Info(13,0)%>"> 
          &nbsp;完整Url地址 </td>
      </tr>
    </tbody>
  </table>
<p align="center">
    <input type=submit value=" 更 正 " ID="Submit1">
    

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -