VB.NET & CStr() - CStr() : Returns an expression that has been converted to a Variant of subtype String.
ShotDev Focus:
- VB.NET & CStr()
Example
CStr.aspx
<%@ Page Language="VB" %>
<script runat="server">
Sub Page_Load(sender As Object, e As EventArgs)
Me.lblText1.Text = CStr("1234")
Me.lblText2.Text = CStr("5678")
Me.lblText3.Text = CStr("9012")
Me.lblText4.Text = CStr("abcd")
Me.lblText5.Text = CStr("efgh")
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 />
<asp:Label id="lblText5" runat="server"></asp:Label><br />
</form>
</body>
</html>
Screenshot

