web 2.0

VB.NET & TypeName()

VB.NET & TypeName() - TypeName() : Returns a string that provides Variant subtype information about a variable.

ShotDev Focus:
- VB.NET & TypeName()

Example

TypeName.aspx

<%@ Page Language="VB" %>
<script runat="server">

Sub Page_Load(sender As Object, e As EventArgs)
Dim strVar1(3)
Dim strVar2,strVar3
strVar1(0) = 1
strVar1(1) = 2
strVar1(2) = 3
strVar1(3) = 4

strVar2 = "Weerachai Nukitram"

strVar3 = 123456

Me.lblText1.Text  = TypeName(strVar1)
Me.lblText2.Text  = TypeName(strVar2)
Me.lblText3.Text  = TypeName(strVar3)
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 />
</form>
</body>
</html>

Screenshot

VB.NET & TypeName()
.
.
.
Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (No Ratings Yet)
Loading ... Loading ...

One Response to “VB.NET & TypeName()”

  1. 2metamorphosis…

Leave a Reply

You must be logged in to post a comment.