Ver Mensaje Individual
  #9 (permalink)  
Antiguo 22/06/2005, 09:14
oscar_sito
 
Fecha de Ingreso: noviembre-2004
Mensajes: 16
Antigüedad: 20 años, 6 meses
Puntos: 0
no puedo poner ese código

Intenté pero no pude poner ese codigo, por favor si me indicas donde iría ese código. Acá te adjunto parte del código a ver si me puedes indicar. Gracias.


<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
<!--#include file="Connections/remo.asp" -->
<%
var osy__varini = "12/02/2004";
if (String(Request.QueryString("fecha1l")) != "undefined" &&
String(Request.QueryString("fecha1l")) != "") {
osy__varini = String(Request.QueryString("fecha1l"));
}
%>
<%
var osy = Server.CreateObject("ADODB.Recordset");
osy.ActiveConnection = MM_remo_STRING;
osy.Source = "SELECT Tipo_Expediente.DenoExpediente, Principal.ExpteNro, Principal.ExpteAño, Principal.FechaMEYS, Principal.Extracto, Tipo_Autor.ApeNom FROM Tipo_Expediente INNER JOIN (Tipo_Autor INNER JOIN (Autor_Detalle INNER JOIN Principal ON Autor_Detalle.ExpteNro = Principal.ExpteNro AND Autor_Detalle.ExpteAño = Principal.ExpteAño) ON Tipo_Autor.Id_Autor = Autor_Detalle.Id_Autor) ON Tipo_Expediente.CodigoExpediente = Principal.CodigoExpediente WHERE FechaMEYS LIKE '"+ osy__varini.replace(/'/g, "''") + "'";
osy.CursorType = 0;
osy.CursorLocation = 2;
osy.LockType = 1;
osy.Open();
var osy_numRows = 0;
%>