Forums
This topic is locked
Conditional HTML table - ASP VB
Posted 05 Apr 2006 08:30:16
1
has voted
05 Apr 2006 08:30:16 allan khalil posted:
Hi Guys,Could someone please have a look at this code and let me know where I have gone wrong?
<b>If OO12="1" Then</b>
A TABLE IS PLACED HERE
<b>If Else</b>
<b>Else If OO12="2" Then</b>
ANOTHER TABLE IS PLACED HERE
<b>End If </b>
Replies
Replied 05 Apr 2006 17:57:53
05 Apr 2006 17:57:53 micah santos replied:
<%
If OO12="1" Then
// A TABLE IS PLACED HERE
Else
If OO12="2" Then
// ANOTHER TABLE IS PLACED HERE
End If
End If
%>
If OO12="1" Then
// A TABLE IS PLACED HERE
Else
If OO12="2" Then
// ANOTHER TABLE IS PLACED HERE
End If
End If
%>