vote up 0 vote down star

Having some issue with this...

    if (System.Convert.ToInt32(TotalCost(theOrder.OrderData.ToString()).ToString()) < 10000)
        ViewData["cc"] = "OK";
    else
        ViewData["cc"] = "NO";

yields: "Input string was not in a correct format."

How can I check if the number inside the string is less than 10000?

Oh yeah: TotalCost returns a ContentResult of type text/plain

flag

47% accept rate

4 Answers

vote up 3 vote down check

First use Int32.TryParse to see if the string is a number that falls into the range of Int32.

If the result is a number, you can always compare it to whatever limit you have.

int i;
if (int.TryParse(theOrder.OrderData, out i))
{
    if (i < 10000)
    {
       // Do stuff...
    }
}
link|flag
+1. Good answer, and you beat me to it. – David Stratton Sep 30 at 3:38
vote up 1 vote down

use Int32.TryParse()

link|flag
vote up 0 vote down
int value = Convert.ToInt32(TotalCost(theOrder.OrderData.ToString()));
if (value < 10000)
{
    // ...
}
link|flag
vote up 0 vote down

description: How to check if a string is numberic or integer

Hai...

Here is the solution for the problem

link text

Thanks!

Murugan Andezuthu Dharmaratnam

link|flag
Hi and welcome to SO. A couple of pointers...its better to actually show the solution rather than linking to a page as the linked page may be taken down in the future so SO would lose the answer. Its also not necessary to sign your name. – Si Keep Oct 20 at 8:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.