currency function

V25RJB

New Member
OK I was about to write a function for a string to a currency like taking the value 40 and making it $40.00 or 34.4 and making it $34.40. Is there a .Net function for this?<BR>thanks&nbsp;<BR>Dim Price As Integer = 40<BR>Response.Write(String.Format("{0:c}", Price))<BR>
 
Back
Top