Here how to convert string to double ..
if (dr.Read() == true)
{
textBox2.Text= dr.GetSqlValue(0).ToString();
}
i am try like this string value to double but i got error.......
label5.Text = Convert.ToDouble(textBox2.Text);
please give me ans
how to convert string value to double......