I am using ASP.NET with VB.NET.
This is my code
Dim Total As Double
Total = Convert.ToDouble(lblTotal.Text.Substring(4, 20))
The value of lblTotal is
ABC20.00
I just want to trim the value to give me the 20.00 and convert it ToDouble
End Result Must be
20.00
C# code will also help me undertand what needs to happen and why I am getting the error messsage
Index and length must refer to a location within the string. Parameter name: length