hi
see below code:
LblResult.Text = (Convert.ToDouble(Lblcredit.Text) / Convert.ToDouble(12.9)).ToString();
when I run this code result is:
Lblresult.Text=567.123658596
I want it display in integer like
567
How I can convert it?
Best regards
neda
nedash says: LblResult.Text = (Convert.ToDouble(Lblcredit.Text) / Convert.ToDouble(12.9)).ToString();
Replace above code with below.
LblResult.Text = Convert.ToInt32((Convert.ToDouble(Lblcredit.Text) / Convert.ToDouble(12.9))).ToString();
© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.