Hi all
I want to know whether a digit is decimal or int
i know in front end we can use indexof method but how to do ti in back end
datatype for the field is decimal but some rows contains 1.00 and others 1.50 i wnat to distinguish those fields
if(DayTotal.IndexOf('0') >0)
{
1.5
}
else
{
1.00
}
how to make it in back end
Thanks in advance