-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopciones_empresa.asp
45 lines (45 loc) · 976 Bytes
/
opciones_empresa.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
<%@ Language=VBScript %>
<%
dim user
user = session("UsEmpresa")
if isempty(user) then
Response.Redirect("../Login.asp")
end if
%>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<link href="../theme/Master.css" rel="stylesheet" type="text/css">
<title>Opciones Empresariales</title>
<script language="javascript">
function Enlace(Opcion)
{
if (Opcion=="1")
{
destino = "buscar_usuario.asp"
}
if (Opcion=="2") {
destino = "../salir.asp"
}
document.window.location = destino
}
</script>
</HEAD>
<BODY>
<div align="center" >
<h2>Opciones</h2>
<table border="0" cellpadding="2" cellspacing="2">
<tr>
<td class="celdaBgBlue05">
<a href="./buscar_usuario.asp" onClick="javascript:Enlace('1')">Busquedas de usuarios</a>
</td>
</tr>
<tr>
<td class="celdaBgBlue05">
<a href="../salir.asp" onClick="javascript:Enlace('1')">Terminar Sesion</a>
</td>
</tr>
</table>
</div>
</BODY>
</HTML>