温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:某贸易公司项目管理系统源码
当前文件:
ProjectEva/Emp_Info_Edit.aspx[4K,2009-6-12 11:52:28],打开代码结构图
ProjectEva/Emp_Info_Edit.aspx[4K,2009-6-12 11:52:28],打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Emp_Info_Edit.aspx.cs" Inherits="Emp_Info_Edit" %> 2
3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 4
5
<html xmlns="http://www.w3.org/1999/xhtml" > 6
<head runat="server"> 7
<title>无标题页</title> 8
<link href="css/css.css" rel="stylesheet" type="text/css" /> 9
</head> 10
<body> 11
<form id="form1" runat="server"> 12
<div align="center"> 13
<br /> 14
<br /> 15
<br /> 16
<asp:Panel ID="Panel1" runat="server" Height="325px" Width="626px"> 17
<div style="text-align: center"> 18
<table border="0" style="width: 546px" id="table10"> 19
<caption> 20
</caption> 21
<tr > 22
<td align="center" style="height: 24px; width: 312px;" class="karl"> 23
所在部门:<asp:DropDownList ID="dropDep" runat="server" DataSourceID="SqlDataSource1" 24
DataTextField="Dep_Name" DataValueField="Dep_Name" Width="125px" OnSelectedIndexChanged="dropDep_SelectedIndexChanged"> 25
</asp:DropDownList> 26
</td class="karl"> 27
<td align="left" style="height: 24px; width: 200px;" class="karl"> 28
员工姓名:<asp:TextBox ID="txtName" runat="server" Width="123px"></asp:TextBox></td> 29
</tr> 30
<tr > 31
<td align="center" style="height: 25px; width: 312px;" class="karl"> 32
出生日期:<asp:TextBox ID="txtBirthday" runat="server" Width="123px"></asp:TextBox></td> 33
<td align="left" style="height: 25px; width: 200px;" class="karl"> 34
性 别:<asp:RadioButton ID="rbtnMale" runat="server" GroupName="sex" 35
Text="男" Width="56px" /> 36
<asp:RadioButton ID="rbtnFemale" runat="server" GroupName="sex" Text="女" Width="56px" /></td> 37
</tr> 38
<tr > 39
<td align="center" style="width: 312px" class="karl"> 40
入职时间:<asp:TextBox ID="txtStartTime" runat="server" Width="123px"></asp:TextBox></td> 41
<td align="left" style="width: 200px" class="karl"> 42
离职时间:<asp:TextBox ID="txtEndTime" runat="server" Width="123px"></asp:TextBox></td> 43
</tr> 44
<tr > 45
<td align="center" style="width: 312px" class="karl"> 46
联系地址:<asp:TextBox ID="txtAddress" runat="server" Width="123px"></asp:TextBox></td> 47
<td align="left" style="width: 200px" class="karl"> 48
联系电话:<asp:TextBox ID="txtTel" runat="server" Width="123px"></asp:TextBox></td> 49
</tr> 50
<tr > 51
<td style="height: 26px; width: 312px;" align="center" class="karl"> 52
电子邮件:<asp:TextBox ID="txtEmail" runat="server" Width="123px"></asp:TextBox></td> 53
<td style="height: 26px; width: 200px;" align="left" class="karl"> 54
ICQ 号码:<asp:TextBox ID="txtQQ" runat="server" Width="127px"></asp:TextBox></td> 55
</tr> 56
<tr> 57
<td style="height: 29px" colspan="2" class="karl"> 58
<asp:ImageButton ID="btnModify" runat="server" ImageUrl="~/Images/修改.gif" OnClick="btnModify_Click" /> 59
<asp:ImageButton ID="btnReset" runat="server" 60
CausesValidation="False" ImageUrl="~/Images/重设.gif" /></td> 61
</tr> 62
</table> 63
</div> 64
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:conString %>" 65
SelectCommand="SELECT [Dep_Name] FROM [Department]"></asp:SqlDataSource> 66
</asp:Panel> 67
68
</div> 69
</form> 70
</body> 71
</html> 72




