Hi how do format my label to a currency format.
code
lblFundsAvail.Text = result.Data.FundsAvail.ToString();
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try using the format specifier
C:Note though that this will use whatever currency the server happens to have as its current culture, and this may not be the currency you want. You can specify another culture as the second parameter.