VB.NET & FormatPercent() - FormatPercent() : Returns an expression formatted as a percentage (that is, multiplied by 100) with a trailing % character.
ShotDev Focus:
- VB.NET & FormatPercent()
Example
FormatPercent.aspx
<%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Me.lblText1.Text = FormatCurrency("1234.5678") Me.lblText2.Text = FormatCurrency("1234.5678",2) Me.lblText3.Text = FormatCurrency("1234.5678",3) 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
3interdict…
…