Error de sintaxis ???????'

13/02/2005 - 01:56 por akiragrejander | Informe spam

Hola,
Llevo todo un dia peleandome con una instruccion If Len y no hay manera.

El codigo es el siguiente :

<TD width="1%"><% if len (oRs("Notas")>0 )then
response.write(<IMG border=0 src="Factura.gif">)
end if) %></TD>

Me dice lo siguiente.:
Error de compilación de Microsoft VBScript error '800a03ea'

Error de sintaxis

/fichas0.asp, line 253

response.write(<IMG border=0 src="Factura.gif">)
^



<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
Hola,
<br>Llevo todo un dia peleandome con una instruccion If Len y no hay manera.
<br>El codigo es el siguiente :
<p>&nbsp;&nbsp; <b>&lt;TD width="1%">&lt;% if len (oRs("Notas")>0 )then</b>
<br><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; response.write(&lt;IMG
border=0 src="Factura.gif">)</b>
<br><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; end if) %>&lt;/TD></b>
<p>&nbsp;Me dice lo siguiente.:
<br>Error de compilaci&oacute;n de Microsoft VBScript error '800a03ea'
<p>Error de sintaxis
<p>/fichas0.asp, line 253
<p>response.write(&lt;IMG border=0 src="Factura.gif">)
<br>^
<br>&nbsp;</html>

 

Leer las respuestas

#1 Benjamin Porter
13/02/2005 - 10:49 | Informe spam
Está super claro, el string a imprimir debe ir entre comillas:

Lo tienes asi:
response.write(<IMG border=0 src="Factura.gif">)

Debe ser asi:
response.write("<IMG border=0 src="""Factura.gif""">")



Atentamente
_____________________
Benjamin Porter

(Evidentemente sin el ".punto")



escribió en el mensaje
news:
Hola,
Llevo todo un dia peleandome con una instruccion If Len y no hay manera.
El codigo es el siguiente :
<TD width="1%"><% if len (oRs("Notas")>0 )then
response.write(<IMG border=0 src="Factura.gif">)
end if) %></TD>
Me dice lo siguiente.:
Error de compilación de Microsoft VBScript error '800a03ea'
Error de sintaxis
/fichas0.asp, line 253
response.write(<IMG border=0 src="Factura.gif">)
^

Preguntas similares