-
Notifications
You must be signed in to change notification settings - Fork 0
/
desarrollo_foro.asp
378 lines (335 loc) · 11.9 KB
/
desarrollo_foro.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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
<%@ Language=VBScript %>
<%
if isempty(session("id")) then
Response.Redirect("Login.asp")
end if
session("destforo") = "desarrollo_foro.asp"
dim db
dim rs
dim rs2
set db = server.CreateObject("SQLComandos.Comandos")
dim foro
foro = Request.querystring("foro")
%>
<html>
<head>
<link href="./theme/Master.css" rel="stylesheet" type="text/css">
<!--
<style type="text/css">
.Presentacion1 {
font-family: Arial, Helvetica, sans-serif;
font-size: medium;
font-style: normal;
font-weight: bold;
font-variant: normal;
text-transform: none;
color: #0000CC;
border: medium dotted #000099;
}
Presentacion2 {
font-family: Arial, Helvetica, sans-serif;
font-size: medium;
font-style: normal;
line-height: normal;
font-weight: bold;
font-variant: normal;
text-transform: none;
color: #003366;
}
</style>
-->
</head>
<script language="javascript">
function Correo2(autor) {
forma.opcion.value = '1'
forma.autor.value = autor
forma.target='Preview'
forma.submit()
}
function Correo(autor) {
pagina = 'formulario_correo.asp?autor='+autor+'&opcion=1'
ancho = 700
altura = 500
if (screen) {
leftPos = (screen.width / 2) - (ancho/2)
}
PreviewWindow = window.open(pagina,'Preview','toolbar=no,menubar=no,location=no,scrollbars=yes,width='+ancho+'+,height='+altura+'left='+leftPos+'+,top=20')
forma.opcion.value = '1'
forma.autor.value = autor
forma.target='Preview'
forma.submit()
}
/**/
function Editar(respuesta,foro) {
var destino;
var str;
var buscado;
var s = navigator.appVersion;
ss = s.substr(22,1);
if (ss.indexOf("6")==0)
{
destino = "responder_tema2.asp"
}
else
{
destino = "responder_tema.asp"
}
forma2.action= destino
forma2.respuesta.value= respuesta
forma2.foro.value=foro
forma2.accion.value = '1'
forma2.submit()
}
/**/
function Actualizar(foro) {
var destino;
var str;
var buscado;
var s = navigator.appVersion;
ss = s.substr(22,1);
if (ss.indexOf("6")==0)
{
destino = "nuevoforo2.asp"
}
else
{
destino = "nuevoforo.asp"
}
forma2.action= destino
forma2.foro.value=foro
forma2.accion.value = '1'
forma2.submit()
}
function Eliminar(foro) {
valor = confirm("Eliminar este foro.\nEsta accin no sera reversible, Desea Continuar?")
if (valor == true)
{
parent.principal.location = "./eliminar_foro.asp?foro="+foro
}
}
function Responder_Tema(foro)
{
var destino;
var str;
var buscado;
var s = navigator.appVersion;
ss = s.substr(22,1);
if (ss.indexOf("6")==0)
{
destino = "responder_tema2.asp"
}
else
{
destino = "responder_tema.asp"
}
destino = destino + '?respuesta=1&foro='+foro+'&tipor=1'
document.location = destino
}
function Regresar()
{
pagina = 'foro_general.asp'
document.location=pagina
}
function agregar_documento(respuesta,foro) {
Enlace=prompt("Ingrese el texto que se mostrara como enlace para el documento.\nDeje en blanco si desea que aparezca la palabra Documento como enlace.","");
if (Enlace!=null) {
ancho = 600
if (screen) {
leftPos = (screen.width / 2) - (ancho/2)
}
PreviewWindow = window.open('agregar_documento.asp?respuesta='+respuesta+'&enlace='+Enlace+'&foro='+foro+'&tipo=2','AgregarDoc','toolbar=no,menubar=no,location=no,scrollbars=yes,width='+ancho+'+,height=250,left='+leftPos+'+,top=20')
}
if (Enlace=="") {
Enlace="Documento"
ancho = 700
if (screen) {
leftPos = (screen.width / 2) - (ancho/2)
}
PreviewWindow = window.open('agregar_documento.asp?respuesta='+respuesta+'&enlace='+Enlace+'&foro='+foro+'&tipo=2','AgregarDoc','toolbar=no,menubar=no,location=no,scrollbars=yes,width='+ancho+'+,height=350,left='+leftPos+'+,top=20')
}
}
function eliminar_documento(respuesta,foro) {
ancho = 700
if (screen) {
leftPos = (screen.width / 2) - (ancho/2)
}
PreviewWindow = window.open('eliminar_documento.asp?respuesta='+respuesta+'&foro='+foro+'&tipo=2','EliminarDoc','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()}" >
<table width="766" border="0" cellPadding="2" cellSpacing="2" >
<tr noWrap class="celdaBgBlue">
<th width="730"> Foro </th>
</tr>
<%
Sql = "select f.id,f.titulo,day(f.fecha_creacion) dia,month(f.fecha_creacion) mes,year(f.fecha_creacion) anio, f.autor,f.activo,f.descripcion, u.nombre, u.apellido "
Sql = Sql & " from foro f, usuario u "
Sql = sql & " where f.activo = 1 "
sql = Sql & " and f.autor = u.id"
sql = sql & " and f.id = " & foro
'Response.Write sql
'Response.end
set rs = db.SQLSelect("DBBAECYS",sql)
if not rs.eof then
while rs.eof<> true
foro = rs("id")
titulo = rs("titulo")
fecha = rs("dia")&"-"&rs("mes")&"-"&rs("anio")
descripcion = rs("descripcion")
sql ="select count(id) contador from respuesta where foro = "&foro
set rs2 = db.SQLSelect("DBBAECYS",sql)
if not rs2.EOF then
total = rs2("contador")
end if
set rs2=nothing
sql ="select max(fecha) fecha from respuesta where foro = "&foro
set rs2 = db.SQLSelect("DBBAECYS",sql)
if not rs2.EOF then
fecha_ultima = rs2("fecha")
end if
set rs2=nothing
%>
<tr class="celdaBgBlueLeft">
<td >
<div align="left">
<%
if rs("autor") = session("id") then
%>
<!--
<img alt="Eliminar foro" src="imagenes/delete_forum.gif" onclick="javascript:Eliminar('<%=rs("id")%>')" width="15" height="15">
-->
<img src="imagenes/edit_forum.gif" alt="Actualizar foro" onclick="javascript:Actualizar('<%=rs("id")%>')" width="15" height="15">
<%
else%>
<img alt="Mandar Correo al autor" onclick="javascript:Correo('<%=rs("autor")%>')" src="imagenes/correo.gif" WIDTH="15" HEIGHT="15">
<%
end if
%>
<img alt="Regresar" onclick="javascript:Regresar('<%=rs("id")%>')" src="imagenes/regresar_foro.gif" WIDTH="15" HEIGHT="15">
<img alt="Responder tema" onclick="javascript:Responder_Tema('<%=foro%>')" src="imagenes/icon_reply_topic.gif" WIDTH="15" HEIGHT="15">
</div></td>
</tr>
<tr>
<td>
<font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><strong>Autor:</strong></font>
<font color="#0000FF" size="2" face="Arial, Helvetica, sans-serif"><strong><%= rs("nombre")%> <%= rs("apellido")%></strong></font><br>
<font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><strong>Titulo:</strong></font>
<font color="#0000FF" size="2" face="Arial, Helvetica, sans-serif"><strong><%= titulo%></strong></font>
<font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><strong>Fecha Creacion:</strong></font>
<font color="#0000FF" size="2" face="Arial, Helvetica, sans-serif"><strong> <%=fecha%></strong></font>
<font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><strong>Total Visitas:</strong></font>
<font color="#0000FF" size="2" face="Arial, Helvetica, sans-serif"><strong> <%= total%> </strong></font>
<font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><strong> Ultima Visita: </strong></font>
<font color="#0000FF" size="2" face="Arial, Helvetica, sans-serif"><strong> <%= fecha_ultima%> </strong></font>
<hr>
<font color="#333333" size="2" face="Arial, Helvetica, sans-serif"><%=rs("descripcion")%></font>
</td>
</tr>
<tr>
<td>
<%
sql = "select enlace,archivo from documento where foro = " & foro & " and respuesta is null "
set rs2 = db.SQLSelect("DBBAECYS",sql)
if not rs2.EOF then
%>
<hr>
<strong><font size="1" face="Arial, Helvetica, sans-serif">Documentos: </font></strong>
<%
while rs2.EOF <> true
%>
<strong><font size="2" face="Arial, Helvetica, sans-serif"><a href="download.asp?file=<%=rs2("archivo")%>&tipo=1"><%=rs2("enlace")%></a> </font></strong>
<%
rs2.MoveNext
wend
end if
set rs2 = nothing
%>
<td>
</tr>
<%
rs.movenext
wend
set rs = nothing
%>
<%
sql = "select r.id, r.titulo,r.descripcion,r.fecha,u.nombre, u.apellido,r.autor "
sql = sql & " from respuesta r, usuario u "
sql = Sql & " where u.id = r.autor "
sql = Sql & " and r.foro = "& foro
sql = sql & " order by r.fecha "
set rs = db.SQLSelect("DBBAECYS",sql)
if not rs.EOF then
while rs.eof <> true
%>
<tr class="celdabgblueLeft">
<td >
<div align="left">
<%if rs("autor") = session("id") then%>
<!--
<img alt="Eliminar respuesta" src="imagenes/delete_forum.gif" onclick="javascript:Eliminar('<%=rs("id")%>')" width="15" height="15">
-->
<img alt="Actualizar respuesta" src="imagenes/edit_forum.gif" onclick="javascript:Editar('<%=rs("id")%>','<%=foro%>')" width="15" height="15">
<img src="imagenes/btn_documento2.bmp" alt="Agregar Documento" onclick="javascript:agregar_documento('<%=rs("id")%>','<%=foro%>')" width="15" height="15">
<img src="imagenes/btn_eliminadoc2.bmp" alt="Eliminar Documento" onclick="javascript:eliminar_documento('<%=rs("id")%>','<%=foro%>')" width="15" height="15">
<%else%>
<img alt="Mandar Correo al autor" onclick="javascript:Correo('<%=rs("autor")%>')" src="imagenes/correo.gif" WIDTH="15" HEIGHT="15">
<%end if%>
<img alt="Responder tema" onclick="javascript:Responder_Tema('<%=foro%>')" src="imagenes/icon_reply_topic.gif" WIDTH="15" HEIGHT="15">
</div></td>
</tr>
<tr>
<td>
<font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><strong>Autor:</strong></font>
<font color="#0000FF" size="2" face="Arial, Helvetica, sans-serif"><strong><%= rs("nombre")%> <%= rs("apellido")%></strong></font><br>
<font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><strong>Titulo:</strong></font>
<font color="#0000FF" size="2" face="Arial, Helvetica, sans-serif"><strong><%= rs("titulo")%></strong></font>
<font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><strong>Fecha Respueta:</strong></font>
<font color="#0000FF" size="2" face="Arial, Helvetica, sans-serif"><strong> <%= rs("fecha") %></strong></font>
<hr>
<font color="#333333" size="2" face="Arial, Helvetica, sans-serif"><%=rs("descripcion")%></font>
<br>
<%
sql = "select enlace,archivo from documento where respuesta = "& rs("id")
set rs2 = db.SQLSelect("DBBAECYS",sql)
if not rs2.EOF then
%>
<strong><font size="1" face="Arial, Helvetica, sans-serif">Documentos: </font></strong>
<%
while rs2.EOF <> true
%>
<!-- <strong><font size="2" face="Arial, Helvetica, sans-serif"><a href="foros/<%=rs2("archivo")%>" target="newpage"><%=rs2("enlace")%></a> </font></strong>-->
<strong><font size="2" face="Arial, Helvetica, sans-serif"><a href="download.asp?file=<%=rs2("archivo")%>&tipo=1" ><%=rs2("enlace")%></a> </font></strong>
<%
rs2.MoveNext
wend
end if
set rs2=nothing
%>
<hr>
</td>
</tr>
<%
rs.MoveNext
wend
else
end if
%>
<%else%>
<td><font color="#333333" size="2" face="Arial, Helvetica, sans-serif">No ha ingresado ningun foro</font></td>
<%end if%>
</table>
<form name="forma2" action="" method="get">
<input name="foro" type="hidden" value="">
<input name="accion" type="hidden" value="">
<input name="respuesta" type="hidden" value="">
</form>
<form name="forma" action="formulario_correo.asp" method="get" target="">
<input name="autor" type="hidden" value="<%=autor%>">
<input name="opcion" type="hidden" value="">
</form>
</body>
</html>
<%
set rs = nothing
set db = nothing
%>