hi can i write if statement with out else in asp code is working fine but ia m not sure using if statement with out else . can we use if statement with out else i.e if --elseif--elseif--endif please help me
below is my code
array=15.16 or 15.12win7 or 15.win7 or 15.18 win7 or .......etc
i need to execute the loop when array value is 15.16 and highervalues
<%
if isnumeric(array(1)) then
If CInt(array(0)) >= 15 And Cint(array(1)) >= 16 then
<tr>
something to display
</tr>
endif
elseif If CInt(array(0)) >= 15 AndLCASE(CSTR(left(arrDigits(1),4)))= "win7" then
<tr>
something to display
</tr>
elseif CInt(array(0)) >= 15 And Cint(left(array(1),2)) >= 16 then
<tr>
something to display
</tr>
end if
%>
below is my code
array=15.16 or 15.12win7 or 15.win7 or 15.18 win7 or .......etc
i need to execute the loop when array value is 15.16 and highervalues
<%
if isnumeric(array(1)) then
If CInt(array(0)) >= 15 And Cint(array(1)) >= 16 then
<tr>
something to display
</tr>
endif
elseif If CInt(array(0)) >= 15 AndLCASE(CSTR(left(arrDigits(1),4)))= "win7" then
<tr>
something to display
</tr>
elseif CInt(array(0)) >= 15 And Cint(left(array(1),2)) >= 16 then
<tr>
something to display
</tr>
end if
%>