-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreviewforo.asp
60 lines (59 loc) · 1012 Bytes
/
previewforo.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
<%@ Language=VBScript %>
<%
if isempty(session("UsEmpresa")) then
%>
<HTML>
<HEAD>
<TITLE>Previsualizar</TITLE>
</HEAD>
<script language="javascript">
function Aceptar() {
window.location = "../Login.asp"
}
</script>
<BODY onload="javascript:Aceptar()">
</BODY>
</HTML>
<%
else
%>
<%
dim Desc
desc = Request.QueryString("desc")
%>
<HTML>
<HEAD>
<TITLE>Previsualizar</TITLE>
<link href="../theme/Master.css" rel="stylesheet" type="text/css">
</HEAD>
<script language="javascript">
function Aceptar() {
window.location = "./opciones_empresa.asp"
}
</script>
<BODY>
<table border="0">
<tr>
<td>
<%
function FormatStr(fString)
on Error resume next
fString = Replace(fString, CHR(13) & CHR(10), "<br>")
FormatStr = fString
on Error goto 0
end function
%>
<%
Response.Write desc
%>
</td>
</tr>
<table>
<div align="center">
<input name="cerrar" value="Aceptar" type="button" onclick="javascript:Aceptar()">
</div>
</BODY>
</HTML>
<%
end if
%>