VB.NET & FormatCurrency() - FormatCurrency() : Returns an expression formatted as a currency value using the currency symbol defined in the system control panel.
ShotDev Focus:
- VB.NET & FormatCurrency()
Example
FormatCurrency.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