-
Notifications
You must be signed in to change notification settings - Fork 0
/
ingreso_preferencias.asp
243 lines (224 loc) · 7.2 KB
/
ingreso_preferencias.asp
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<%@ Language=VBScript %>
<%
login = Request.form("login")
archivo = Request.querystring("archivo")
ingresado = 0
if len(archivo) > 0 then
ingresado = 1
end if
dim db
dim resultado
set db = server.CreateObject("SQLComandos.Comandos")
dim rs
%>
<HTML>
<HEAD>
<title>Registro Usuarios</title>
<link href="./theme/Master.css" rel="stylesheet" type="text/css">
</HEAD>
<script language="javascript">
function CorregirDatos(id) {
action = "actualizar_registro.asp?id="+id
form.action = action
return true
}
function prueba() {
if (preferencias.comentario.value.length() > 5 ) {
alert ("No puede ingresar mas de 5 caracteres")
return false
}
return true
}
function Curriculum(Login)
{
ancho = 700
if (screen) {
leftPos = (screen.width / 2) - (ancho/2)
}
catWindow = window.open('ingreso_curriculum.asp?login='+Login,'Curriculum','toolbar=no,menubar=no,location=no,scrollbars=yes,width='+ancho+'+,height=350,left='+leftPos+'+,top=20')
}
</script>
<BODY onload="javascript:{if(parent.frames[0]&&parent.frames['opciones'].Go)parent.frames['opciones'].Go()}" >
<div align="center">
<%
if ingresado = 0 then
sql = "select u.id,u.nombre,u.apellido,u.direccion,u.telefono,u.mail,u.login,u.carnet,u.colegiado,u.tipo,u.arc_resume,u.sexo,p.nombre nacionalidad from usuario u,pais p where u.login = '"& login & "' and u.pais = p.id"
else
sql = "select u.id,u.nombre,u.apellido,u.direccion,u.telefono,u.mail,u.login,u.carnet,u.colegiado,u.tipo,u.arc_resume,u.sexo,p.nombre nacionalidad from usuario u,pais p where u.id = "& session("id") & " and u.pais = p.id"
end if
set rs = db.SQLSelect("DBBAECYS",sql)
if not rs.eof then
nombre = ""
apellido = ""
direccion = ""
telefono = ""
mail = ""
carnet = ""
colegiado = ""
tipo = ""
curri = ""
sexo = ""
nacionalidad = ""
id = rs("id")
'session("id") = id
login = rs("login")
nombre = rs("nombre")
apellido = rs("apellido")
direccion = rs("direccion")
telefono = rs("telefono")
mail = rs("mail")
carnet = rs("carnet")
colegiado = rs("colegiado")
tipo = rs("tipo")
curri = rs("arc_resume")
sexo = rs("sexo")
nacionalidad = rs("nacionalidad")
%>
<h1>Datos Personales</h1>
<table border = "0" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<th width="140" nowrap class="celdaBgBlueLeft"> <div align="right"><b>Nombre</div></th>
<th width="389" class="celdaBgBlue05"><div align="left"><%=nombre%> <%response.write " " %>
<%=apellido%> </div></th>
</tr>
<tr>
<th width="140" nowrap class="celdaBgBlueLeft"> <div align="right"><b>Usuario: </b></div></th>
<th width="389" class="celdaBgBlue05">
<div align="left"><%=login%>
</div></th>
</tr>
<tr>
<th width="140" nowrap class="celdaBgBlueLeft"> <div align="right"><b>Direccion: </b></div></th>
<th width="389" class="celdaBgBlue05">
<div align="left"><%=direccion%>
</div>
</th>
</tr>
<tr>
<th width="140" nowrap class="celdaBgBlueLeft"> <div align="right"><b>Telefono: </b></div></th>
<th width="389" class="celdaBgBlue05">
<div align="left"><%=telefono%>
</div></th>
</tr>
<tr>
<th width="140" nowrap class="celdaBgBlueLeft"> <div align="right"><b>Correo Electronico: </b></div></th>
<th width="389" class="celdaBgBlue05"><div align="left"><%=mail%>
</div>
</td>
</tr>
<%
if cint(tipo) = 1 then
%>
<tr>
<th width="140" nowrap class="celdaBgBlueLeft"> <div align="right"><b>No. Carnet: </b></div></th>
<th width="389" class="celdaBgBlue05"> <div align="left"><%=carnet%>
</div></th>
</tr>
<%
else
%>
<tr>
<th width="140" nowrap class="celdaBgBlueLeft"> <div align="right"><b>No. Colegiado: </b></div></th>
<th width="389" class="celdaBgBlue05"> <div align="left"><%=colegiado%>
</div></th>
</tr>
<%
end if
end if
%>
<%
set rs = nothing
if ingresado = 0 then
sql ="select u.nombre,p.nombre pais from universidad u, usuario us, pais p where p.id = u.pais and us.universidad = u.id and us.login = '"& login & "'"
else
sql ="select u.nombre,p.nombre pais from universidad u, usuario us, pais p where p.id = u.pais and us.universidad = u.id and us.id = "& session("id")
end if
set rs = db.SQLSelect("DBBAECYS",sql)
if not rs.eof then
%>
<tr>
<th nowrap class="celdaBgBlueLeft"><div align="right"><strong>Sexo:</strong></div></th>
<th class="celdaBgBlue05"> <div align="left">
<%
if sexo = "1" then
response.write "Masculino"
end if
if sexo = "2" then
response.write "Femenino"
end if
%>
</div></th>
</tr>
<tr>
<th nowrap class="celdaBgBlueLeft"><div align="right"><strong>Nacionalidad</strong></div></th>
<th class="celdaBgBlue05"><div align="left"><%=nacionalidad%></div></th>
</tr>
<tr>
<th nowrap class="celdaBgBlueLeft"><div align="right"><strong> Universidad </strong></div></th>
<th class="celdaBgBlue05"> <div align="left"><%=rs("nombre")%> de <%=rs("pais")%></div></th>
</tr>
<%
else
%>
<tr>
<th nowrap class="celdaBgBlueLeft"><div align="right"><strong> Universidad </strong></div></th>
<th class="celdaBgBlue05"> <div align="left"><font color="#0033FF">Informacion no disponible </font></div></th>
</tr>
<%
end if
set rs = nothing %>
</tbody>
</table>
<!--
<h2>Publicar su curriculum.</h2>
<table border = "0" cellpadding="2" cellspacing="2">
<tr>
<th nowrap class="celdaBgBlueLeft"><div align="right">Curriculum:</div></th>
<%
if len(curri) > 0 then
%>
<th class="celdaBgBlue05"><font face="Times New Roman, Times, serif" color="#000099"><b><%=curri%></b></font></th>
<%
else
%>
<td><font face="Times New Roman, Times, serif"><b><font color="#000099">Aún
no ha sido ingresado por el usuario.</font></b></font></td>
<%
end if
%>
</tr>
<tbody>
<tr>
<th nowrap class="celdaBgBlueLeft"> <div align="right">Archivo: </div></th>
<th class="celdaBgBlue05"> <a href="javascript:Curriculum('<%=id%>')"><font face="Arial, Helvetica, sans-serif" size="2"><b><font color="#000099">
<%if len(curri) > 0 then %>
Actualizar Curriculum
<% else %>
Ingresar Curriculm
<% end if %>
</font></b></font></a> </th>
</tr>
</tbody>
</table>
-->
</div>
<div align="center">
<form name="form" action="enviar_clave.asp" method="post">
<input name = "id" type="hidden" value = "<%=id%>">
<table border="0" cellpadding="2" cellspacing="2">
<tr>
<td>
<input name ="corregir" type="submit" class="celdaBgBlue05" onclick="return CorregirDatos('<%=id%>')" value="<- Corregir">
</td>
<td width="17"></td>
<td>
<input name ="Continuar" type="submit" class="celdaBgBlue05" value="Continuar ->" >
</td>
</tr>
</table>
<input name="mail" type="hidden" value="<%=mail%>" >
</form>
</div>
</BODY>
</HTML>