-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagregar_documento.asp
161 lines (152 loc) · 3.59 KB
/
agregar_documento.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
<%@ Language=VBScript %>
<%
if isempty(session("id")) then
%>
<html>
<head>
<link href="./theme/Master.css" rel="stylesheet" type="text/css">
</head>
<script language="javascript">
function cerrarventana() {
opener.window.location = 'Login.asp'
window.close
}
</script>
<body onload="javascript:cerrarventana()">
</body>
</html>
<%
end if
Dim id
dim login
dim tipo
id = session("id")
respuesta = request.QueryString("respuesta")
foro = Request.QueryString("foro")
enlace = Request.QueryString("enlace")
tipo = ""
tipo = request.querystring("tipo")
dim db
set db = server.CreateObject("SQLComandos.Comandos")
%>
<HTML>
<HEAD>
<link href="./theme/Master.css" rel="stylesheet" type="text/css">
<title>
Ingreso Documento
</title>
</HEAD>
<script language="javascript">
function cerrarventana() {
window.close()
}
function Validar(Forma) {
if ((Forma.documento.value.length == 0) && (Forma.action == "ingresar_documentoforo.asp"))
{
alert ("No ingreso archivo")
return false
}
return true
}
</script>
<BODY>
<%
dim sql
dim rs
%>
<%
if tipo = "2" and not isempty(respuesta) then
sql = "select count(id) contador from documento where respuesta = " & respuesta
else
sql = "select count(id) contador from documento where foro = " & foro
end if
set rs = db.SQLSelect("DBBAECYS",sql)
if not rs.EOF then
if rs("contador") < 3 then
%>
<div align="center">
<form name="ingresar_documento" method="post" enctype="multipart/form-data" action="ingresar_documentoforo.asp" >
<table border="0" cellpadding="2" cellspacing="2">
<tr>
<td class="celdaBgBlueLeft">Documento: </td>
<td class="celdaBgBlue05">
<input name="documento" type="file">
</td>
</tr>
</table>
<br>
<%
if not isempty(tipo) and tipo="2" then
%>
<input name="respuesta" type="hidden" value="<%=respuesta%>">
<input name="tipo" type="hidden" value="<%=tipo%>">
<input name="foro" type="hidden" value="<%=foro%>">
<%
else
%>
<input name="foro" type="hidden" value="<%=foro%>">
<%
end if
%>
<input name="enlace" type="hidden" value="<%= enlace%>">
<table border="0" cellpadding="2" cellspacing="2">
<tr>
<td><input name="aceptar" type="submit" class="celdaBgBlue05" onClick="return Validar(ingresar_documento)" value="Aceptar"> </td>
<td><input name="cancelar" type="submit" class="celdaBgBlue05" onClick="return cerrarventana()" value="Cancelar"></td>
</tr>
</table>
</form>
</div>
<%
else
%>
<div align="center">
<h2 >No se pueden Ingresar mas de 3 documentos</h2>
<input name="cancelar" type="submit" class="celdaBgBlue05" onClick="return cerrarventana()" value="Cancelar">
</div>
<%
end if
end if
set rs = nothing
%>
<%
if tipo = "2" and not isempty(respuesta) then
sql = "select enlace,archivo from documento where respuesta = "&respuesta
else
sql = "select enlace,archivo from documento where foro = "&foro
end if
set rs = db.SQLSelect("DBBAECYS",sql)
if not rs.eof then
%>
<br>
<div align="center">
<h2>Documentos Ingresados</h2>
<table border="0" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<th align="center" class="celdaBgBlue"> Enlace </th>
<th align="center" class="celdaBgBlue" >Archivo</th>
</tr>
<%
while rs.eof <> true
%>
<tr align="center">
<td class="celdaBgBlue05"><font size="2" face="Arial, Helvetica, sans-serif"> <%=rs("enlace")%> </font></td>
<td class="celdaBgBlue05"><font size="2" face="Arial, Helvetica, sans-serif"> <%=rs("archivo")%> </font></td>
</tr>
<%
rs.movenext
wend
%>
</tbody>
</table>
</div>
<%
end if
set rs = nothing
%>
</BODY>
</HTML>
<%
set db = nothing
%>