Input string was not in a correct format.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.FormatException: Input string was not in a correct format.
Source Error:
Line 355: if ((TheDataRow["type"].ToString() == "Outage" ) || (TheDataRow["type"].ToString() == "TR Outage")) |

Need help on correct input string format
Bill_W
Thanks.
CaptainSmudge
if you are using .NET 2.0, try the int.TryParse and see what happens also....example
int result = -1;
if (int.TryParse(TheDataRow
{
//converted result to integer, result stored in the variable "result"
}
else
{
//value was not a numeric/int value
}