VB.NET & ToString() - ToString() : Converts the value of this instance to a String. Overload List. Returns this instance of String; no actual conversion is performed. Supported by the .NET Compact Framework.
ShotDev Focus:
- VB.NET & ToString()
Example
ToString.aspx
<%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Dim strString As String = "ShotDev.Com" Dim intNumber As Integer = 123456 Me.lblText1.Text = strString.ToString() Me.lblText2.Text = intNumber.ToString() 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 /> </form> </body> </html>
Screenshot
1fustian…
…