
15/05/2008, 13:58
|
 | | | Fecha de Ingreso: enero-2002 Ubicación: Cali - Colombia
Mensajes: 2.234
Antigüedad: 23 años, 3 meses Puntos: 4 | |
Re: mostrar registro tipo memo en interbase. HOLA,
la busqueda por fecha si tengo problemas todavia
set rs = con.Execute("select ZONA, FECHA, DESCRIPCION, CODCLIENTE, NOTAS from EVENTOBCK Where CODCLIENTE = " & codcliente & " AND FECHA= '"&fecha&"' Order by FECHA DESC")
he intentado de dos formas
que la fecha quede asi 1/3/2008 o asi 01/03/2008 y de ninguna forma me muestra ningun dato.. que mas podra ser
Dim dia, mes, ano, fecha
dia = request.querystring("dia")
mes = request.querystring("mes")
ano = request.querystring("ano")
if dia = "" or isnull(dia) then
dia = day(now)
end if
if mes = "" or isnull(mes) then
mes = month(now)
end if
if ano = "" or isnull(ano) then
ano = year(now)
end if
fecha = FormatoNum(mes,2) &"/" &FormatoNum(dia,2)&"/"&ano |