I have a problem when trying to display a table as part of an if else statement. The error that I get is the following:
Error Type:
Microsoft VBScript compilation (0x800A03EA)
Syntax error
/helpdesk/trackedissue.as p, line 154
else response.Write <table width="599" border="0" align="center">
The code is:
<%
if isnull(checksta tus.Fields.Item ("solution").Va lue) then response.write "Sorry, this issue has not been resolved yet. Please try tracking later."
else response.write <table width="599" border="0" align="center">
<tr>
<td align="left" width="128">Sol ution:</td>
<td width="161" align="left">(t rackingissue.Fi elds.Item("solu tion").Value)</td>
<td width="79"></td>
<td width="199"></td>
</tr>
</table>
end if
%>
I am a starter in asp programming, I would appreciate your help. I am using Dreamweaver cs3.
Thx in adv.
Error Type:
Microsoft VBScript compilation (0x800A03EA)
Syntax error
/helpdesk/trackedissue.as p, line 154
else response.Write <table width="599" border="0" align="center">
The code is:
<%
if isnull(checksta tus.Fields.Item ("solution").Va lue) then response.write "Sorry, this issue has not been resolved yet. Please try tracking later."
else response.write <table width="599" border="0" align="center">
<tr>
<td align="left" width="128">Sol ution:</td>
<td width="161" align="left">(t rackingissue.Fi elds.Item("solu tion").Value)</td>
<td width="79"></td>
<td width="199"></td>
</tr>
</table>
end if
%>
I am a starter in asp programming, I would appreciate your help. I am using Dreamweaver cs3.
Thx in adv.
Comment