employee_form.aspx
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:39k
源码类别:

OA系统

开发平台:

ASP/ASPX

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="employee_form.aspx.cs" Inherits="web_personnel_curricula_vitae_employee_form" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/asp:TableRow/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>无标题页</title>
  6.     <link href="../../../css/style.css" rel="stylesheet" type="text/css" />
  7.     <script type="text/javascript" language="javascript">
  8.     function selectDepartment()
  9.     {
  10.         var url = "../department/department_select_tree.aspx";
  11.         var features = "width=400,height=500,top=200,left=250,location=no,toolbar=no,status=no,resizable=yes,scrollbars=yes";
  12.         var selectDepartment = open(url, 'selectDepartment', features);
  13.         selectDepartment.focus();
  14.     }
  15.     function setDepartment(deptId, deptName)
  16.     {
  17.         document.all.TxtDepartment.value=deptName;
  18.         document.all.DepartmentId.value=deptId;
  19.     }
  20.     function changeEmpNo()
  21.     {
  22.         document.all.TxtLoginName.value = document.all.TxtNo.value;
  23.         document.all.TxtPwd.value = document.all.TxtNo.value;
  24.     }
  25.     </script>
  26. </head>
  27. <body>
  28.     <form id="form1" runat="server">
  29.     <div>
  30.     <center><br />
  31.         <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:oaConnection %>"
  32.                         SelectCommand="select id, name from OA_EMPLOYEE_POSITION order by sequence desc&#13;&#10;">
  33.                     </asp:SqlDataSource>
  34.                 <asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:oaConnection %>"
  35.                         SelectCommand="select id, name from OA_USER_GROUP_MAIN"></asp:SqlDataSource>
  36.         <asp:Label ID="LblTitle" runat="server" Text="員工履歷表" Font-Bold="True" Font-Size="Medium"></asp:Label><br /><br />
  37.         <asp:Table ID="Tbl1" runat="server" Width="850px">
  38.             <asp:TableRow runat="server">
  39.                 <asp:TableCell BorderWidth="1px" ColumnSpan="6" HorizontalAlign="Left" runat="server">
  40.                     <asp:Label ID="LblDepartment" runat="server" Text="隆成集團流通事業群" Font-Size="Small"></asp:Label>
  41.                     <asp:TextBox ID="TxtDepartment" runat="server" Enabled="False"></asp:TextBox>
  42.                     <asp:HiddenField ID="DepartmentId" runat="server" />
  43.                     <input type="button" value="選擇部門" onclick="selectDepartment()" />                    
  44.                     </asp:TableCell>
  45.                     <asp:TableCell ID="TableCell9" BorderWidth="1px" ColumnSpan="2" HorizontalAlign="Left" Text="是否为主管" runat="server">
  46.                   <asp:DropDownList ID="Ddlmanger" runat="server">
  47.                         <asp:ListItem Value="1">是</asp:ListItem>
  48.                         <asp:ListItem Value="2"  Selected>否</asp:ListItem>                        
  49.                     </asp:DropDownList>
  50.                     </asp:TableCell>
  51.             </asp:TableRow>   
  52.             <asp:TableRow runat="server">
  53.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Center" runat="server">
  54.                     <asp:Label ID="LblName" runat="server" Text="姓名"></asp:Label>
  55.                 </asp:TableCell>
  56.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  57.                     <asp:TextBox ID="TxtName" runat="server" Width="90px"></asp:TextBox>&nbsp;
  58.                 </asp:TableCell>
  59.                 <asp:TableCell BorderWidth="1px" runat="server">
  60.                     <asp:Label ID="LblPosition" runat="server" Text="職位"></asp:Label>
  61.                 </asp:TableCell>
  62.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  63.                     <asp:DropDownList ID="DdlPosition" runat="server" DataSourceID="SqlDataSource1" DataTextField="name" DataValueField="id">
  64.                     </asp:DropDownList>
  65.                 </asp:TableCell>
  66.                 <asp:TableCell BorderWidth="1px" runat="server">
  67.                     <asp:Label ID="LblActiveDate" runat="server" Style="position: relative" Text="入職日期"></asp:Label></asp:TableCell>
  68.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  69.                     <asp:TextBox ID="TxtActiveDate" runat="server" Style="position: relative" Width="70px"></asp:TextBox><asp:ImageButton
  70.                         ID="ImageButton1" runat="server" ImageUrl="~/images/calbtn.gif" OnClick="ImageButton1_Click"
  71.                         Style="position: relative" /><asp:Calendar ID="Calendar1" runat="server" BackColor="White"
  72.                             BorderColor="#999999" CellPadding="4" DayNameFormat="Shortest" Font-Names="Verdana"
  73.                             Font-Size="8pt" ForeColor="Black" Height="180px" OnSelectionChanged="Calendar1_SelectionChanged"
  74.                             Style="position: relative" Visible="False" Width="200px">
  75.                             <SelectedDayStyle BackColor="#666666" Font-Bold="True" ForeColor="White" />
  76.                             <SelectorStyle BackColor="#CCCCCC" />
  77.                             <WeekendDayStyle BackColor="#FFFFCC" />
  78.                             <TodayDayStyle BackColor="#CCCCCC" ForeColor="Black" />
  79.                             <OtherMonthDayStyle ForeColor="Gray" />
  80.                             <NextPrevStyle VerticalAlign="Bottom" />
  81.                             <DayHeaderStyle BackColor="#CCCCCC" Font-Bold="True" Font-Size="7pt" />
  82.                             <TitleStyle BackColor="#999999" BorderColor="Black" Font-Bold="True" />
  83.                         </asp:Calendar>
  84.                 </asp:TableCell>
  85.                 <asp:TableCell BorderWidth="1px" runat="server">
  86.                     <asp:Label ID="LblDimissionDate" runat="server" Style="position: relative" Text="離職日期"></asp:Label></asp:TableCell>
  87.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  88.                     <asp:TextBox ID="TxtDimissionDate" runat="server" Style="position: relative" Width="70px"></asp:TextBox><asp:ImageButton
  89.                         ID="ImageButton2" runat="server" ImageUrl="~/images/calbtn.gif" OnClick="ImageButton2_Click"
  90.                         Style="position: relative" /><asp:Calendar ID="Calendar2" runat="server" BackColor="White"
  91.                             BorderColor="#999999" CellPadding="4" DayNameFormat="Shortest" Font-Names="Verdana"
  92.                             Font-Size="8pt" ForeColor="Black" Height="180px" OnSelectionChanged="Calendar2_SelectionChanged"
  93.                             Style="position: relative" Visible="False" Width="200px">
  94.                             <SelectedDayStyle BackColor="#666666" Font-Bold="True" ForeColor="White" />
  95.                             <SelectorStyle BackColor="#CCCCCC" />
  96.                             <WeekendDayStyle BackColor="#FFFFCC" />
  97.                             <TodayDayStyle BackColor="#CCCCCC" ForeColor="Black" />
  98.                             <OtherMonthDayStyle ForeColor="Gray" />
  99.                             <NextPrevStyle VerticalAlign="Bottom" />
  100.                             <DayHeaderStyle BackColor="#CCCCCC" Font-Bold="True" Font-Size="7pt" />
  101.                             <TitleStyle BackColor="#999999" BorderColor="Black" Font-Bold="True" />
  102.                         </asp:Calendar>
  103.                 </asp:TableCell>
  104.             </asp:TableRow>
  105.             <asp:TableRow runat="server">
  106.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Center" runat="server">
  107.                     <asp:Label ID="LblNo" runat="server" Text="工號"></asp:Label>
  108.                 </asp:TableCell>
  109.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  110.                     <asp:TextBox ID="TxtNo" runat="server" Width="90px"></asp:TextBox>&nbsp;
  111.                 </asp:TableCell>
  112.                 <asp:TableCell BorderWidth="1px" runat="server">
  113.                     <asp:Label ID="LblLoginName" runat="server" Text="登録名"></asp:Label>
  114.                 </asp:TableCell>
  115.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  116.                     <asp:TextBox ID="TxtLoginName" runat="server" Width="90px"></asp:TextBox>&nbsp;
  117.                 </asp:TableCell>
  118.                 <asp:TableCell BorderWidth="1px" runat="server">
  119.                     <asp:Label ID="LblPwd" runat="server" Style="position: relative" Text="密碼"></asp:Label></asp:TableCell>
  120.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  121.                     <asp:TextBox ID="TxtPwd" TextMode="Password" runat="server" Style="position: relative" Width="100px"></asp:TextBox>
  122.                     </asp:TableCell>
  123.                 <asp:TableCell BorderWidth="1px" runat="server">
  124.                     <asp:Label ID="LblGroup" runat="server" Style="position: relative" Text="OA權限"></asp:Label></asp:TableCell>
  125.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  126.                     <asp:DropDownList ID="DdlGroup" runat="server" DataSourceID="SqlDataSource2" DataTextField="name" DataValueField="id">
  127.                     </asp:DropDownList>
  128.                 </asp:TableCell>
  129.             </asp:TableRow>
  130.             <asp:TableRow runat="server">
  131.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Center" runat="server">
  132.                     <asp:Label ID="LblSex" runat="server" Text="性别"></asp:Label>
  133.                 </asp:TableCell>
  134.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  135.                     <asp:DropDownList ID="DdlSex" runat="server">
  136.                         <asp:ListItem Value="M">男</asp:ListItem>
  137.                         <asp:ListItem Value="F">女</asp:ListItem>
  138.                     </asp:DropDownList>
  139.                 </asp:TableCell>
  140.                 <asp:TableCell BorderWidth="1px" runat="server">
  141.                     <asp:Label ID="LblBirthDate" runat="server" Text="出生日期"></asp:Label>
  142.                 </asp:TableCell>
  143.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  144.                     <asp:TextBox ID="TxtBirthDate" runat="server" Width="90px"></asp:TextBox>
  145.                 </asp:TableCell>
  146.                 <asp:TableCell BorderWidth="1px" runat="server">
  147.                     <asp:Label ID="LblNation" runat="server" Style="position: relative" Text="民族"></asp:Label></asp:TableCell>
  148.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  149.                     <asp:TextBox ID="TxtNation" runat="server" Style="position: relative" Width="100px"></asp:TextBox></asp:TableCell>
  150.                 <asp:TableCell BorderWidth="1px" runat="server">
  151.                     <asp:Label ID="LblMarriage" runat="server" Style="position: relative" Text="婚否"></asp:Label></asp:TableCell>
  152.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  153.                     <asp:DropDownList ID="DdlMarriage" runat="server">
  154.                         <asp:ListItem Value="1">未婚</asp:ListItem>
  155.                         <asp:ListItem Value="2">已婚</asp:ListItem>
  156.                         <asp:ListItem Value="3">離異</asp:ListItem>
  157.                     </asp:DropDownList></asp:TableCell>
  158.             </asp:TableRow>
  159.             <asp:TableRow runat="server">
  160.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Center" runat="server">
  161.                     <asp:Label ID="LblIdCard" runat="server" Style="position: relative" Text="身份證號"></asp:Label></asp:TableCell>
  162.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  163.                     <asp:TextBox ID="TxtIdCard" runat="server" Style="position: relative" Width="125px"></asp:TextBox></asp:TableCell>
  164.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Center" runat="server">
  165.                     <asp:Label ID="LblIdCardExpire" runat="server" Text="身份證到期日"></asp:Label></asp:TableCell>
  166.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  167.                     <asp:TextBox ID="TxtIdCardExpire" runat="server" Width="90px"></asp:TextBox>
  168.                 </asp:TableCell>     
  169.                 <asp:TableCell BorderWidth="1px" runat="server">
  170.                     <asp:Label ID="LblNative" runat="server" Style="position: relative" Text="籍貫"></asp:Label></asp:TableCell>
  171.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  172.                     <asp:TextBox ID="TxtNative" runat="server" Style="position: relative" Width="100px"></asp:TextBox></asp:TableCell>
  173.                 <asp:TableCell BorderWidth="1px" runat="server">
  174.                     <asp:Label ID="LblStature" runat="server" Style="position: relative" Text="身高"></asp:Label></asp:TableCell>
  175.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  176.                     <asp:TextBox ID="TxtStature" runat="server" Style="position: relative" Width="100px"></asp:TextBox></asp:TableCell>
  177.             </asp:TableRow>
  178.             <asp:TableRow runat="server">
  179.                 <asp:TableCell BorderWidth="1px" runat="server">
  180.                     <asp:Label ID="LblTel" runat="server" Style="position: relative" Text="手機"></asp:Label></asp:TableCell>
  181.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  182.                     <asp:TextBox ID="TxtTel" runat="server" Style="position: relative" Width="125px"></asp:TextBox></asp:TableCell>
  183.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Center" runat="server">
  184.                     <asp:Label ID="LblSmartPhone" runat="server" Style="position: relative" Text="小靈通"></asp:Label></asp:TableCell>
  185.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  186.                     <asp:TextBox ID="TxtSmartPhone" runat="server" Style="position: relative" Width="90px"></asp:TextBox>
  187.                 </asp:TableCell>
  188.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Center" runat="server">
  189.                     <asp:Label ID="LblTelExtension" runat="server" Style="position: relative" Text="辦公室分機"></asp:Label></asp:TableCell>
  190.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  191.                     <asp:TextBox ID="TxtTelExtension" runat="server" Style="position: relative" Width="100px"></asp:TextBox>
  192.                 </asp:TableCell>
  193.                 <asp:TableCell ID="TableCell3" BorderWidth="1px" HorizontalAlign="Center" runat="server">
  194.                     <asp:Label ID="Label7" runat="server" Style="position: relative" BorderStyle="None" Text="上班地點"></asp:Label></asp:TableCell>
  195.                 <asp:TableCell ID="TableCell5" BorderWidth="1px" HorizontalAlign="Left" runat="server">
  196.                     <asp:TextBox ID="TxtWorkPlace" runat="server" Style="position: relative" Width="100px"></asp:TextBox>
  197.                 </asp:TableCell>
  198.             </asp:TableRow>
  199.             <asp:TableRow runat="server">
  200.                 <asp:TableCell BorderWidth="1px" runat="server">
  201.                     <asp:Label ID="LblLinkman" runat="server" Style="position: relative" Text="緊急联络人"></asp:Label></asp:TableCell>
  202.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  203.                     <asp:TextBox ID="TxtLinkman" runat="server" Style="position: relative" Width="100px"></asp:TextBox></asp:TableCell>
  204.                 <asp:TableCell BorderWidth="1px" runat="server">
  205.                     <asp:Label ID="Label5" runat="server" Style="position: relative" Text="緊急联络人電話"></asp:Label></asp:TableCell>
  206.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  207.                     <asp:TextBox ID="TxtLinkmanTel" runat="server" Style="position: relative" Width="90px"></asp:TextBox></asp:TableCell>
  208.                 <asp:TableCell ID="TableCell1" BorderWidth="1px" HorizontalAlign="Center" runat="server">
  209.                     <asp:Label ID="LblWorkCardNo1" runat="server" Style="position: relative" BorderStyle="None" Text="工牌編號1"></asp:Label></asp:TableCell>
  210.                 <asp:TableCell ID="TableCell2" BorderWidth="1px" HorizontalAlign="Left" runat="server">
  211.                     <asp:TextBox ID="TxtWorkCardNo1" runat="server" Style="position: relative" Width="100px"></asp:TextBox>
  212.                 </asp:TableCell>
  213.                 <asp:TableCell ID="LblWorkCardNo2" BorderWidth="1px" HorizontalAlign="Center" runat="server">
  214.                     <asp:Label ID="Label6" runat="server" Style="position: relative" BorderStyle="None" Text="工牌編號2"></asp:Label></asp:TableCell>
  215.                 <asp:TableCell ID="TableCell4" BorderWidth="1px" HorizontalAlign="Left" runat="server">
  216.                     <asp:TextBox ID="TxtWorkCardNo2" runat="server" Style="position: relative" Width="100px"></asp:TextBox>
  217.                 </asp:TableCell>
  218.             </asp:TableRow>
  219.             <asp:TableRow runat="server">
  220.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Center" runat="server">
  221.                     <asp:Label ID="LblMailWork" runat="server" Text="工作郵箱"></asp:Label>
  222.                 </asp:TableCell>
  223.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" ColumnSpan="3" runat="server">
  224.                     <asp:TextBox ID="TxtMailWork" runat="server" Width="290px"></asp:TextBox>
  225.                 </asp:TableCell>
  226.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Center" runat="server">
  227.                     <asp:Label ID="LblMailPersonal" runat="server" Text="私人郵箱"></asp:Label>
  228.                 </asp:TableCell>
  229.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" ColumnSpan="3" runat="server">
  230.                     <asp:TextBox ID="TxtMailPersonal" runat="server" Width="300px"></asp:TextBox>
  231.                 </asp:TableCell>
  232.             </asp:TableRow>
  233.             <asp:TableRow runat="server">
  234.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Center" runat="server">
  235.                     <asp:Label ID="LblRegisteredAddress" runat="server" Style="position: relative" Text="戶口地址"></asp:Label></asp:TableCell>
  236.                 <asp:TableCell BorderWidth="1px" ColumnSpan="3" HorizontalAlign="Left" runat="server">
  237.                     <asp:TextBox ID="TxtRegisteredAdress" runat="server" Style="position: relative" Width="290px"></asp:TextBox></asp:TableCell>
  238.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Center" runat="server">
  239.                     <asp:Label ID="LblAddress" runat="server" Style="position: relative" Text="現時住址"></asp:Label></asp:TableCell>
  240.                 <asp:TableCell BorderWidth="1px" ColumnSpan="3" HorizontalAlign="Left" runat="server">
  241.                     <asp:TextBox ID="TxtAddress" runat="server" Style="position: relative" Width="300px"></asp:TextBox></asp:TableCell>
  242.             </asp:TableRow>
  243.             </asp:Table><br />
  244.             <asp:Table runat="server" ID="Tbl2" Width="850px">
  245.             <asp:TableRow runat="server">
  246.                 <asp:TableCell BorderWidth="1px" ColumnSpan="5" HorizontalAlign="Left" runat="server"><asp:Label ID="Label1" runat="server" Text="1.家庭情況及背景調查" Font-Bold="True"></asp:Label></asp:TableCell>
  247.             </asp:TableRow>
  248.             <asp:TableRow runat="server">
  249.                 <asp:TableCell BorderWidth="1px" runat="server">家屬姓名</asp:TableCell>
  250.                 <asp:TableCell BorderWidth="1px" runat="server">關係</asp:TableCell>
  251.                 <asp:TableCell BorderWidth="1px" runat="server">年齡</asp:TableCell>
  252.                 <asp:TableCell BorderWidth="1px" runat="server">聯係電話</asp:TableCell>
  253.                 <asp:TableCell BorderWidth="1px" runat="server">工作單位/住址</asp:TableCell>
  254.             </asp:TableRow>
  255.             <asp:TableRow runat="server">
  256.                 <asp:TableCell BorderWidth="1px" runat="server">
  257.                     <asp:TextBox ID="TxtFamilyName1" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  258.                 <asp:TableCell BorderWidth="1px" runat="server">
  259.                     <asp:TextBox ID="TxtRelative1" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  260.                 <asp:TableCell BorderWidth="1px" runat="server">
  261.                     <asp:TextBox ID="TxtAge1" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  262.                 <asp:TableCell BorderWidth="1px" runat="server">
  263.                     <asp:TextBox ID="TxtTel1" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  264.                 <asp:TableCell BorderWidth="1px" runat="server">
  265.                     <asp:TextBox ID="TxtCompany1" runat="server" Width="200px"></asp:TextBox></asp:TableCell>
  266.             </asp:TableRow>
  267.             <asp:TableRow runat="server">
  268.                 <asp:TableCell BorderWidth="1px" runat="server">
  269.                     <asp:TextBox ID="TxtFamilyName2" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  270.                 <asp:TableCell BorderWidth="1px" runat="server">
  271.                     <asp:TextBox ID="TxtRelative2" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  272.                 <asp:TableCell BorderWidth="1px" runat="server">
  273.                     <asp:TextBox ID="TxtAge2" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  274.                 <asp:TableCell BorderWidth="1px" runat="server">
  275.                     <asp:TextBox ID="TxtTel2" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  276.                 <asp:TableCell BorderWidth="1px" runat="server">
  277.                     <asp:TextBox ID="TxtCompany2" runat="server" Width="200px"></asp:TextBox></asp:TableCell>
  278.             </asp:TableRow>
  279.             <asp:TableRow runat="server">
  280.                 <asp:TableCell BorderWidth="1px" runat="server">
  281.                     <asp:TextBox ID="TxtFamilyName3" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  282.                 <asp:TableCell BorderWidth="1px" runat="server">
  283.                     <asp:TextBox ID="TxtRelative3" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  284.                 <asp:TableCell BorderWidth="1px" runat="server">
  285.                     <asp:TextBox ID="TxtAge3" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  286.                 <asp:TableCell BorderWidth="1px" runat="server">
  287.                     <asp:TextBox ID="TxtTel3" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  288.                 <asp:TableCell BorderWidth="1px" runat="server">
  289.                     <asp:TextBox ID="TxtCompany3" runat="server" Width="200px"></asp:TextBox></asp:TableCell>
  290.             </asp:TableRow>
  291.             <asp:TableRow runat="server">
  292.                 <asp:TableCell BorderWidth="1px" runat="server">
  293.                     <asp:TextBox ID="TxtFamilyName4" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  294.                 <asp:TableCell BorderWidth="1px" runat="server">
  295.                     <asp:TextBox ID="TxtRelative4" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  296.                 <asp:TableCell BorderWidth="1px" runat="server">
  297.                     <asp:TextBox ID="TxtAge4" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  298.                 <asp:TableCell BorderWidth="1px" runat="server">
  299.                     <asp:TextBox ID="TxtTel4" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  300.                 <asp:TableCell BorderWidth="1px" runat="server">
  301.                     <asp:TextBox ID="TxtCompany4" runat="server" Width="200px"></asp:TextBox></asp:TableCell>
  302.             </asp:TableRow>
  303.             <asp:TableRow runat="server">
  304.                 <asp:TableCell BorderWidth="1px" runat="server">背景諮詢者</asp:TableCell>
  305.                 <asp:TableCell BorderWidth="1px" runat="server">關係</asp:TableCell>
  306.                 <asp:TableCell BorderWidth="1px" runat="server">職業</asp:TableCell>
  307.                 <asp:TableCell BorderWidth="1px" runat="server">聯係電話</asp:TableCell>
  308.                 <asp:TableCell BorderWidth="1px" runat="server">工作單位/住址</asp:TableCell>
  309.             </asp:TableRow>
  310.             <asp:TableRow runat="server">
  311.                 <asp:TableCell BorderWidth="1px" runat="server">
  312.                     <asp:TextBox ID="TxtBackName1" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  313.                 <asp:TableCell BorderWidth="1px" runat="server">
  314.                     <asp:TextBox ID="TxtBackRelative1" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  315.                 <asp:TableCell BorderWidth="1px" runat="server">
  316.                     <asp:TextBox ID="TxtBackJob1" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  317.                 <asp:TableCell BorderWidth="1px" runat="server">
  318.                     <asp:TextBox ID="TxtBackTel1" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  319.                 <asp:TableCell BorderWidth="1px" runat="server">
  320.                     <asp:TextBox ID="TxtBackCompany1" runat="server" Width="200px"></asp:TextBox></asp:TableCell>
  321.             </asp:TableRow>
  322.             <asp:TableRow runat="server">
  323.                 <asp:TableCell BorderWidth="1px" runat="server">
  324.                     <asp:TextBox ID="TxtBackName2" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  325.                 <asp:TableCell BorderWidth="1px" runat="server">
  326.                     <asp:TextBox ID="TxtBackRelative2" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  327.                 <asp:TableCell BorderWidth="1px" runat="server">
  328.                     <asp:TextBox ID="TxtBackJob2" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  329.                 <asp:TableCell BorderWidth="1px" runat="server">
  330.                     <asp:TextBox ID="TxtBackTel2" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  331.                 <asp:TableCell BorderWidth="1px" runat="server">
  332.                     <asp:TextBox ID="TxtBackCompany2" runat="server" Width="200px"></asp:TextBox></asp:TableCell>
  333.             </asp:TableRow>
  334.             </asp:Table><br />
  335.             <asp:Table runat="server"  ID="Tbl5" Width="850px">
  336.             <asp:TableRow runat="server">
  337.                 <asp:TableCell BorderWidth="1px" ColumnSpan="4" HorizontalAlign="Left" runat="server"><asp:Label ID="Label2" runat="server" Text="2.教育經歷" Font-Bold="True"></asp:Label></asp:TableCell>
  338.             </asp:TableRow>
  339.             <asp:TableRow runat="server">
  340.                 <asp:TableCell BorderWidth="1px" runat="server">學習起止時間</asp:TableCell>
  341.                 <asp:TableCell BorderWidth="1px" runat="server">學校或培訓機構名稱</asp:TableCell>
  342.                 <asp:TableCell BorderWidth="1px" runat="server">專業/培訓內容</asp:TableCell>
  343.                 <asp:TableCell BorderWidth="1px" runat="server">受教育程度</asp:TableCell>
  344.             </asp:TableRow>
  345.             <asp:TableRow runat="server">
  346.                 <asp:TableCell BorderWidth="1px" runat="server">
  347.                     <asp:TextBox ID="TxtEdBeginYear1" runat="server" Width="30px"></asp:TextBox>年
  348.                     <asp:TextBox ID="TxtEdBeginMonth1" runat="server" Width="30px"></asp:TextBox>月至
  349.                     <asp:TextBox ID="TxtEdEndYear1" runat="server" Width="30px"></asp:TextBox>年
  350.                     <asp:TextBox ID="TxtEdEndMonth1" runat="server" Width="30px"></asp:TextBox>月
  351.                 </asp:TableCell>
  352.                 <asp:TableCell BorderWidth="1px" runat="server">
  353.                     <asp:TextBox ID="TxtSchoolName1" runat="server"></asp:TextBox></asp:TableCell>
  354.                 <asp:TableCell BorderWidth="1px" runat="server">
  355.                     <asp:TextBox ID="TxtSubject1" runat="server"></asp:TextBox></asp:TableCell>
  356.                 <asp:TableCell BorderWidth="1px" runat="server">
  357.                     <asp:TextBox ID="TxtGrade1" runat="server"></asp:TextBox></asp:TableCell>
  358.             </asp:TableRow>
  359.             <asp:TableRow runat="server">
  360.                 <asp:TableCell BorderWidth="1px" runat="server">
  361.                     <asp:TextBox ID="TxtEdBeginYear2" runat="server" Width="30px"></asp:TextBox>年
  362.                     <asp:TextBox ID="TxtEdBeginMonth2" runat="server" Width="30px"></asp:TextBox>月至
  363.                     <asp:TextBox ID="TxtEdEndYear2" runat="server" Width="30px"></asp:TextBox>年
  364.                     <asp:TextBox ID="TxtEdEndMonth2" runat="server" Width="30px"></asp:TextBox>月
  365.                 </asp:TableCell>
  366.                 <asp:TableCell BorderWidth="1px" runat="server">
  367.                     <asp:TextBox ID="TxtSchoolName2" runat="server"></asp:TextBox></asp:TableCell>
  368.                 <asp:TableCell BorderWidth="1px" runat="server">
  369.                     <asp:TextBox ID="TxtSubject2" runat="server"></asp:TextBox></asp:TableCell>
  370.                 <asp:TableCell BorderWidth="1px" runat="server">
  371.                     <asp:TextBox ID="TxtGrade2" runat="server"></asp:TextBox></asp:TableCell>
  372.             </asp:TableRow>
  373.             <asp:TableRow runat="server">
  374.                 <asp:TableCell BorderWidth="1px" runat="server">
  375.                     <asp:TextBox ID="TxtEdBeginYear3" runat="server" Width="30px"></asp:TextBox>年
  376.                     <asp:TextBox ID="TxtEdBeginMonth3" runat="server" Width="30px"></asp:TextBox>月至
  377.                     <asp:TextBox ID="TxtEdEndYear3" runat="server" Width="30px"></asp:TextBox>年
  378.                     <asp:TextBox ID="TxtEdEndMonth3" runat="server" Width="30px"></asp:TextBox>月
  379.                 </asp:TableCell>
  380.                 <asp:TableCell BorderWidth="1px" runat="server">
  381.                     <asp:TextBox ID="TxtSchoolName3" runat="server"></asp:TextBox></asp:TableCell>
  382.                 <asp:TableCell BorderWidth="1px" runat="server">
  383.                     <asp:TextBox ID="TxtSubject3" runat="server"></asp:TextBox></asp:TableCell>
  384.                 <asp:TableCell BorderWidth="1px" runat="server">
  385.                     <asp:TextBox ID="TxtGrade3" runat="server"></asp:TextBox></asp:TableCell>
  386.             </asp:TableRow>
  387.             <asp:TableRow runat="server">
  388.                 <asp:TableCell BorderWidth="1px" runat="server">
  389.                     <asp:TextBox ID="TxtEdBeginYear4" runat="server" Width="30px"></asp:TextBox>年
  390.                     <asp:TextBox ID="TxtEdBeginMonth4" runat="server" Width="30px"></asp:TextBox>月至
  391.                     <asp:TextBox ID="TxtEdEndYear4" runat="server" Width="30px"></asp:TextBox>年
  392.                     <asp:TextBox ID="TxtEdEndMonth4" runat="server" Width="30px"></asp:TextBox>月
  393.                 </asp:TableCell>
  394.                 <asp:TableCell BorderWidth="1px" runat="server">
  395.                     <asp:TextBox ID="TxtSchoolName4" runat="server"></asp:TextBox></asp:TableCell>
  396.                 <asp:TableCell BorderWidth="1px" runat="server">
  397.                     <asp:TextBox ID="TxtSubject4" runat="server"></asp:TextBox></asp:TableCell>
  398.                 <asp:TableCell BorderWidth="1px" runat="server">
  399.                     <asp:TextBox ID="TxtGrade4" runat="server"></asp:TextBox></asp:TableCell>
  400.             </asp:TableRow>
  401.             </asp:Table><br />
  402.             <asp:Table runat="server" ID="Tb3" Width="850px">
  403.             <asp:TableRow runat="server">
  404.                 <asp:TableCell BorderWidth="1px" ColumnSpan="5" HorizontalAlign="Left" runat="server"><asp:Label ID="Label3" runat="server" Text="3.工作經歷" Font-Bold="True"></asp:Label></asp:TableCell>
  405.             </asp:TableRow>
  406.             <asp:TableRow runat="server">
  407.                 <asp:TableCell BorderWidth="1px" runat="server">工作時間</asp:TableCell>
  408.                 <asp:TableCell BorderWidth="1px" runat="server">工作單位及職務</asp:TableCell>
  409.                 <asp:TableCell BorderWidth="1px" runat="server">聯繫電話</asp:TableCell>
  410.                 <asp:TableCell BorderWidth="1px" runat="server">薪資</asp:TableCell>
  411.                 <asp:TableCell BorderWidth="1px" runat="server">離職原因</asp:TableCell>
  412.             </asp:TableRow>
  413.             <asp:TableRow runat="server">
  414.                 <asp:TableCell BorderWidth="1px" runat="server">
  415.                     <asp:TextBox ID="TxtWorkBeginYear1" runat="server" Width="30px"></asp:TextBox>年
  416.                     <asp:TextBox ID="TxtWorkBeginMonth1" runat="server" Width="30px"></asp:TextBox>月至
  417.                     <asp:TextBox ID="TxtWorkEndYear1" runat="server" Width="30px"></asp:TextBox>年
  418.                     <asp:TextBox ID="TxtWorkEndMonth1" runat="server" Width="30px"></asp:TextBox>月
  419.                 </asp:TableCell>
  420.                 <asp:TableCell BorderWidth="1px" runat="server">
  421.                     <asp:TextBox ID="TxtWorkCompany1" runat="server"></asp:TextBox></asp:TableCell>
  422.                 <asp:TableCell BorderWidth="1px" runat="server">
  423.                     <asp:TextBox ID="TxtWorkTel1" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  424.                 <asp:TableCell BorderWidth="1px" runat="server">
  425.                     <asp:TextBox ID="TxtWorkSalary1" runat="server" Width="80px"></asp:TextBox></asp:TableCell>
  426.                 <asp:TableCell BorderWidth="1px" runat="server">
  427.                     <asp:TextBox ID="TxtDimissionReason1" runat="server"></asp:TextBox></asp:TableCell>
  428.             </asp:TableRow>
  429.             <asp:TableRow runat="server">
  430.                 <asp:TableCell BorderWidth="1px" runat="server">
  431.                     <asp:TextBox ID="TxtWorkBeginYear2" runat="server" Width="30px"></asp:TextBox>年
  432.                     <asp:TextBox ID="TxtWorkBeginMonth2" runat="server" Width="30px"></asp:TextBox>月至
  433.                     <asp:TextBox ID="TxtWorkEndYear2" runat="server" Width="30px"></asp:TextBox>年
  434.                     <asp:TextBox ID="TxtWorkEndMonth2" runat="server" Width="30px"></asp:TextBox>月
  435.                 </asp:TableCell>
  436.                 <asp:TableCell BorderWidth="1px" runat="server">
  437.                     <asp:TextBox ID="TxtWorkCompany2" runat="server"></asp:TextBox></asp:TableCell>
  438.                 <asp:TableCell BorderWidth="1px" runat="server">
  439.                     <asp:TextBox ID="TxtWorkTel2" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  440.                 <asp:TableCell BorderWidth="1px" runat="server">
  441.                     <asp:TextBox ID="TxtWorkSalary2" runat="server" Width="80px"></asp:TextBox></asp:TableCell>
  442.                 <asp:TableCell BorderWidth="1px" runat="server">
  443.                     <asp:TextBox ID="TxtDimissionReason2" runat="server"></asp:TextBox></asp:TableCell>
  444.             </asp:TableRow>
  445.             <asp:TableRow runat="server">
  446.                 <asp:TableCell BorderWidth="1px" runat="server">
  447.                     <asp:TextBox ID="TxtWorkBeginYear3" runat="server" Width="30px"></asp:TextBox>年
  448.                     <asp:TextBox ID="TxtWorkBeginMonth3" runat="server" Width="30px"></asp:TextBox>月至
  449.                     <asp:TextBox ID="TxtWorkEndYear3" runat="server" Width="30px"></asp:TextBox>年
  450.                     <asp:TextBox ID="TxtWorkEndMonth3" runat="server" Width="30px"></asp:TextBox>月
  451.                 </asp:TableCell>
  452.                 <asp:TableCell BorderWidth="1px" runat="server">
  453.                     <asp:TextBox ID="TxtWorkCompany3" runat="server"></asp:TextBox></asp:TableCell>
  454.                 <asp:TableCell BorderWidth="1px" runat="server">
  455.                     <asp:TextBox ID="TxtWorkTel3" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  456.                 <asp:TableCell BorderWidth="1px" runat="server">
  457.                     <asp:TextBox ID="TxtWorkSalary3" runat="server" Width="80px"></asp:TextBox></asp:TableCell>
  458.                 <asp:TableCell BorderWidth="1px" runat="server">
  459.                     <asp:TextBox ID="TxtDimissionReason3" runat="server"></asp:TextBox></asp:TableCell>
  460.             </asp:TableRow>
  461.             <asp:TableRow runat="server">
  462.                 <asp:TableCell BorderWidth="1px" runat="server">
  463.                     <asp:TextBox ID="TxtWorkBeginYear4" runat="server" Width="30px"></asp:TextBox>年
  464.                     <asp:TextBox ID="TxtWorkBeginMonth4" runat="server" Width="30px"></asp:TextBox>月至
  465.                     <asp:TextBox ID="TxtWorkEndYear4" runat="server" Width="30px"></asp:TextBox>年
  466.                     <asp:TextBox ID="TxtWorkEndMonth4" runat="server" Width="30px"></asp:TextBox>月
  467.                 </asp:TableCell>
  468.                 <asp:TableCell BorderWidth="1px" runat="server">
  469.                     <asp:TextBox ID="TxtWorkCompany4" runat="server"></asp:TextBox></asp:TableCell>
  470.                 <asp:TableCell BorderWidth="1px" runat="server">
  471.                     <asp:TextBox ID="TxtWorkTel4" runat="server" Width="100px"></asp:TextBox></asp:TableCell>
  472.                 <asp:TableCell BorderWidth="1px" runat="server">
  473.                     <asp:TextBox ID="TxtWorkSalary4" runat="server" Width="80px"></asp:TextBox></asp:TableCell>
  474.                 <asp:TableCell BorderWidth="1px" runat="server">
  475.                     <asp:TextBox ID="TxtDimissionReason4" runat="server"></asp:TextBox></asp:TableCell>
  476.             </asp:TableRow>
  477.             </asp:Table><br />
  478.             <asp:Table runat="server" ID="Tbl4" Width="850px">
  479.             <asp:TableRow runat="server">
  480.                 <asp:TableCell BorderWidth="1px" ColumnSpan="4" HorizontalAlign="Left" runat="server"><asp:Label ID="Label4" runat="server" Text="4.專業技能" Font-Bold="True"></asp:Label></asp:TableCell>
  481.             </asp:TableRow>
  482.             <asp:TableRow runat="server">
  483.                 <asp:TableCell BorderWidth="1px" runat="server">
  484.                     <asp:Label ID="LblLanguage" runat="server" Text="外語"></asp:Label></asp:TableCell>
  485.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  486.                     <asp:TextBox ID="TxtLanguage" runat="server"></asp:TextBox></asp:TableCell>
  487.                 <asp:TableCell BorderWidth="1px" runat="server">
  488.                     <asp:Label ID="LblComputerGrade" runat="server" Text="計算機等級"></asp:Label></asp:TableCell>
  489.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  490.                     <asp:TextBox ID="TxtComputerGrade" runat="server"></asp:TextBox></asp:TableCell>
  491.             </asp:TableRow>
  492.             <asp:TableRow runat="server">
  493.                 <asp:TableCell BorderWidth="1px" runat="server">
  494.                     <asp:Label ID="LblCertificate" runat="server" Text="專業證書"></asp:Label></asp:TableCell>
  495.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  496.                     <asp:TextBox ID="TxtCertificate" runat="server"></asp:TextBox></asp:TableCell>
  497.                 <asp:TableCell BorderWidth="1px" runat="server">
  498.                     <asp:Label ID="LblOther" runat="server" Text="其他"></asp:Label></asp:TableCell>
  499.                 <asp:TableCell BorderWidth="1px" HorizontalAlign="Left" runat="server">
  500.                     <asp:TextBox ID="TxtOther" runat="server"></asp:TextBox></asp:TableCell>
  501.             </asp:TableRow>
  502.         </asp:Table><br />
  503.         <asp:Button ID="BtnOk" runat="server" Text="儲存" OnClick="BtnOk_Click" />
  504.         <input id="Button1" style="position: relative" type="button" value="返回" onclick="history.go(-1)" /></center>
  505.     </div>
  506.     </form>
  507. </body>
  508. </html>