M
Miguel Orrego
Hi,
Can somebody tell me why when I run this code i get this result?
<%
If Available < Requested then
Response.Write "Available = "&Available&"<BR>"
Response.Write "Requested = "&Requested
Else
blah blah blah
End If
%>
Result:
Available = 5
Requested = 2
It's clear that Available is not smaller than Requested so why is it
response.writing instead of doing blah blah blah?
Is my syntax horribly wrong or something?
Help Appreciated. Thanks.
Can somebody tell me why when I run this code i get this result?
<%
If Available < Requested then
Response.Write "Available = "&Available&"<BR>"
Response.Write "Requested = "&Requested
Else
blah blah blah
End If
%>
Result:
Available = 5
Requested = 2
It's clear that Available is not smaller than Requested so why is it
response.writing instead of doing blah blah blah?
Is my syntax horribly wrong or something?
Help Appreciated. Thanks.