?? employee_modify.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)%>">
<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)%>">
完整Url地址 </td>
</tr>
</tbody>
</table>
<p align="center">
<input type=submit value=" 更 正 " ID="Submit1">
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -