•      Powered by
 

CodeTip -- Compare Method using VB.NET

This shows a IF/Then statement using the COMPARE method in VB.NET.
Here is the code:

<%
    dim i as boolean
    i = "shoot" Like "F"
    If i = False Then
          response.write("no")
    Else
          response.write("yes")

    End If
%>

 

tio

Terms of Use | Privacy Statement ©2005-2006 IISLogs.com. All rights reserved - Powered by IIS7 - info @ www.IIS.net