D
Dax
Hi,
during the creation of an HTML page using asp variable I have this
problem:
Microsoft VBScript compilation (0x800A0401) Expected end of statement
/asp/pages/connect1_1.asp, line 27, column 35
strtable = strtable & "<tr valign="top">" &
The code is the following:
dim strtable
strtable = "<table border=1 width=100% >"
strtable = strtable & "<tr valign="top">" &
"<td width="51" bgcolor="#0488EC">CODICE</td>" &
"<td width="51" bgcolor="#0488EC">PRODOTTO</td>" &
"<td width="51" bgcolor="#0488EC">QTA MASSIMA</td>" &
"<td width="51" bgcolor="#0488EC">QTA RICHIESTA</td>" &
"</tr>"
How can I put inside an ASP variable HTML code?
Thanks in advance.
Dax
during the creation of an HTML page using asp variable I have this
problem:
Microsoft VBScript compilation (0x800A0401) Expected end of statement
/asp/pages/connect1_1.asp, line 27, column 35
strtable = strtable & "<tr valign="top">" &
The code is the following:
dim strtable
strtable = "<table border=1 width=100% >"
strtable = strtable & "<tr valign="top">" &
"<td width="51" bgcolor="#0488EC">CODICE</td>" &
"<td width="51" bgcolor="#0488EC">PRODOTTO</td>" &
"<td width="51" bgcolor="#0488EC">QTA MASSIMA</td>" &
"<td width="51" bgcolor="#0488EC">QTA RICHIESTA</td>" &
"</tr>"
How can I put inside an ASP variable HTML code?
Thanks in advance.
Dax