温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:小区物业管理系统源码
当前文件:
SmallHouse/admin/editemployee.aspx,打开代码结构图
SmallHouse/admin/editemployee.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="editemployee.aspx.cs" Inherits="admin_Default2" %> 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 id="Head1" runat="server"> 7
<title>物业管理人员的信息</title> 8
9
<LINK href="image/style.css" type=text/css rel=stylesheet> 10
</head> 11
<body> 12
<form id="form1" runat="server"> 13
<TABLE cellSpacing=0 cellPadding=0 width="100%" bgColor=#c4d8ed border=0> 14
<TBODY> 15
<TR> 16
<TD style="height: 27px"><IMG alt="" src="image/r_1.gif"></TD> 17
<TD width="100%" background=image/r_0.gif style="height: 5px"></TD> 18
<TD style="height: 27px"><IMG alt="" src="image/r_2.gif"></TD></TR> 19
20
<TR> 21
<TD></TD> 22
<TD> 23
24
25
<table class="toptable grid" cellspacing=1 cellpadding=1 align=center 26
border=1> 27
<tbody> 28
<tr> 29
<td class=category colspan="3"> 添加小区住户基本信息</td> 30
</tr> 31
<tr> 32
<td colspan="2" style="height: 28px; width: 74px;" align="center"> 33
<strong><span style="color: #003373; background-color: #ffffff">编号:</span></strong></td> 34
<td colspan="1" style="height: 28px"> 35
<asp:Label ID="ID" runat="server" Text="Label" Width="92px"></asp:Label></td> 36
</tr> 37
<tr> 38
<td colspan="2" align="center" style="width: 74px; text-align: center;"> 39
姓名:</td> 40
<td colspan="1"> 41
<asp:TextBox ID="Name" runat="server"></asp:TextBox></td> 42
</tr> 43
<tr> 44
<td align="center" colspan="2" style="height: 19px; width: 74px;"> 45
姓别:</td> 46
<td colspan="1" style="height: 19px"> 47
<asp:RadioButtonList ID="SEX" runat="server" RepeatDirection="Horizontal" Height="23px" CellPadding="2" CellSpacing="2" Width="110px"> 48
<asp:ListItem Value="1">男</asp:ListItem> 49
<asp:ListItem Value="0">女</asp:ListItem> 50
</asp:RadioButtonList></td> 51
</tr> 52
<tr> 53
<td align="center" colspan="2" style="height: 28px; width: 74px; text-align: center;"> 54
职务:</td> 55
<td colspan="1" style="height: 28px"> 56
<asp:TextBox ID="Job" runat="server"></asp:TextBox></td> 57
</tr> 58
<tr> 59
<td align="center" colspan="2" style="width: 74px; height: 28px; text-align: center;"> 60
工作安排:</td> 61
<td colspan="1" style="height: 28px"> 62
<asp:TextBox ID="Arrage" runat="server"></asp:TextBox></td> 63
</tr> 64
<tr> 65
<td align="center" colspan="2" style="height: 28px; width: 74px; text-align: center;"> 66
身份证号码:</td> 67
<td colspan="1" style="height: 28px"> 68
<asp:TextBox ID="CardID" runat="server"></asp:TextBox></td> 69
</tr> 70
<tr> 71
<td colspan="2" align="center" style="width: 74px; text-align: center;"> 72
居住地址:</td> 73
<td colspan="1"> 74
<asp:TextBox ID="Address" runat="server"></asp:TextBox></td> 75
</tr> 76
<tr> 77
<td align="center" colspan="2" style="height: 23px; width: 74px; text-align: center;"> 78
联系电话:</td> 79
<td colspan="1" style="height: 23px"> 80
<asp:TextBox ID="TEL" runat="server"></asp:TextBox></td> 81
</tr> 82
<tr> 83
<td align="center" colspan="2" style="height: 23px; width: 74px; text-align: center;"> 84
手机号码:</td> 85
<td colspan="1" style="height: 23px"> 86
<asp:TextBox ID="Mobile" runat="server"></asp:TextBox></td> 87
</tr> 88
<tr> 89
<td align="center" colspan="2" style="height: 24px; width: 74px;"> 90
照片路径:</td> 91
<td colspan="1" style="height: 24px"> 92
<asp:Image ID="Image1" runat="server" Height="150px" Width="110px" /> 93
<br /> 94
<asp:FileUpload ID="FileUpload1" runat="server" /> 95
<asp:Button ID="Button3" runat="server" Text="上传" Width="68px" OnClick="Button3_Click" /></td> 96
</tr> 97
98
99
<tr> 100
<td align="right" colspan="2" style="height: 23px; width: 74px;"> 101
</td> 102
<td colspan="1" style="height: 23px"> 103
<asp:Button ID="Button1" runat="server" Text="添加" Width="60px" OnClick="Button1_Click" /> 104
<asp:Button ID="Button2" runat="server" Text="取消" Width="68px" /></td> 105
</tr> 106
</tbody> 107
</table> 108
109
</TD> 110
<TD></TD></TR> 111
112
113
114
115
<TR> 116
<TD><IMG alt="" src="image/r_4.gif"></TD> 117
<TD></TD> 118
<TD><IMG alt="" 119
src="image/r_3.gif"></TD></TR></TBODY></TABLE> 120
</form> 121
</BODY> 122
123
124
</html> 125
126



