VB.NET & IsNumeric() - IsNumeric() : Returns a Boolean value indicating whether an expression can be evaluated as a number.
ShotDev Focus:
- VB.NET & IsNumeric()
Example
IsNumeric.aspx
<%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Dim strVar1,strVar2,strVar3,strVar4 strVar1 = "1234" strVar2 = "ShotDev.Com" strVar3 = Nothing strVar4 = 5678 Me.lblText1.Text = IsNumeric(strVar1) Me.lblText2.Text = IsNumeric(strVar2) Me.lblText3.Text = IsNumeric(strVar3) Me.lblText4.Text = IsNumeric(strVar4) End Sub </script> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form runat="server"> <asp:Label id="lblText1" runat="server"></asp:Label><br /> <asp:Label id="lblText2" runat="server"></asp:Label><br /> <asp:Label id="lblText3" runat="server"></asp:Label><br /> <asp:Label id="lblText4" runat="server"></asp:Label><br /> </form> </body> </html>
Screenshot