I'm having Gridview in which two columns I want to hide but need to acces their value so I keep them in dataKey
out of these two datakey field one is application fees..which contains values in double format, now I want these values for calculation...so I used following method to get the values from datakey application fee
double ApplicationFees = double.Parse(GridApplicationsList.DataKeys[row.RowIndex].Values[1].ToString());
now for eg if my application fees value is 220.75 in gridview but it gives me 220.0 with above code, how do I achive complete double value from datakey