-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAltaEmpleado.aspx
More file actions
176 lines (172 loc) · 6.62 KB
/
Copy pathAltaEmpleado.aspx
File metadata and controls
176 lines (172 loc) · 6.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AltaEmpleado.aspx.cs" Inherits="AltaEmpleado" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<style type="text/css">
.auto-style1 {
width: 99%;
height: 425px;
margin-top: 0px;
}
.auto-style2 {
width: 230px;
}
.auto-style3 {
width: 212px;
}
.auto-style4 {
width: 230px;
height: 57px;
}
.auto-style5 {
width: 212px;
height: 57px;
}
.auto-style6 {
height: 57px;
}
.auto-style7 {
width: 144px;
}
.auto-style8 {
height: 57px;
width: 144px;
}
.auto-style9 {
width: 230px;
height: 46px;
}
.auto-style10 {
width: 212px;
height: 46px;
}
.auto-style11 {
width: 144px;
height: 46px;
}
.auto-style12 {
height: 46px;
}
.auto-style13 {
width: 230px;
height: 48px;
}
.auto-style14 {
width: 212px;
height: 48px;
}
.auto-style15 {
height: 48px;
width: 144px;
}
.auto-style16 {
height: 48px;
}
.auto-style17 {
width: 230px;
height: 64px;
}
.auto-style18 {
width: 212px;
height: 64px;
}
.auto-style19 {
width: 144px;
height: 64px;
}
.auto-style20 {
height: 64px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Text="Alta Empleado"></asp:Label>
</div>
<table class="auto-style1">
<tr>
<td class="auto-style2">
<asp:Label ID="Label2" runat="server" Text="Usuario"></asp:Label>
</td>
<td class="auto-style3">
<asp:TextBox ID="txtUsuario" runat="server" Height="18px" Width="195px"></asp:TextBox>
</td>
<td class="auto-style7">
<asp:Button ID="btnBuscar" runat="server" Height="29px" Text="Buscar" Width="82px" OnClick="btnBuscar_Click" />
</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="auto-style17">
<asp:Label ID="Label3" runat="server" Text="Contraseña"></asp:Label>
</td>
<td class="auto-style18">
<asp:TextBox ID="txtContraseña" runat="server" Height="20px" Width="190px"></asp:TextBox>
</td>
<td class="auto-style19"></td>
<td class="auto-style20"></td>
<td class="auto-style20"></td>
<td class="auto-style20"></td>
</tr>
<tr>
<td class="auto-style2"> </td>
<td class="auto-style3">
</td>
<td class="auto-style7"> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="auto-style9">
<asp:Button ID="btnAlta" runat="server" Height="29px" Text="Alta" Width="70px" OnClick="btnAlta_Click" />
</td>
<td class="auto-style10">
<asp:Button ID="btnLogueo" runat="server" Text="Logueo" OnClick="btnLogueo_Click" />
</td>
<td class="auto-style11"></td>
<td class="auto-style12"></td>
<td class="auto-style12"></td>
<td class="auto-style12"></td>
</tr>
<tr>
<td class="auto-style13">
<asp:Button ID="btnLimpiar" runat="server" OnClick="btnLimpiar_Click" Text="Limpiar" />
</td>
<td class="auto-style14"> </td>
<td class="auto-style15"></td>
<td class="auto-style16"></td>
<td class="auto-style16"></td>
<td class="auto-style16"></td>
</tr>
<tr>
<td class="auto-style4">
</td>
<td class="auto-style5">
</td>
<td class="auto-style8">
<asp:Label ID="lblError" runat="server"></asp:Label>
</td>
<td class="auto-style6"></td>
<td class="auto-style6"> </td>
<td class="auto-style6"></td>
</tr>
<tr>
<td class="auto-style2"> </td>
<td class="auto-style3"> </td>
<td class="auto-style7"> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</form>
</body>
</html>