we can convert currency into required format in asp.net
float amount =100
label.Text=amount.ToString("N2");
it displays as 100.00
by default the currency format is US-format
if you want to change this into indian rupee format
include this code in to your web.config file
< system.web />
< globalization culture="te-IN" uiCulture="auto"/>
</system.web>
Subscribe to:
Post Comments (Atom)
Popular Posts
-
Recently I encountered a case when I knew much more about the data than the optimizer. Originally the performance was horrible, this is why...
-
ASP.NET 4 adds built-in support for using routing with Web Forms. Routing lets you configure an application to accept request URLs that do...
-
Introduction Web Service is known as the software program. These services use the XML to exchange the information with the other software wi...
-
Most experienced developers will tell you that end users tend to "judge an application by its cover". In other words, they don...
-
Introduction Advanced Integration is for sellers who want more flexibility when creating payment buttons. Advanced Integration facilitates t...
No comments:
Post a Comment