Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I got an error report from a user which tells me that on this method there happened an error:

public string SaveItem(int item_id,
                       string item_name,
                       int item_temp,
                       string item_number)
    {...}

The error is for the 'item_temp' parameter.

So this parameter was called as null. But here is how I fill this parameter in jquery, in the ajax call:

item_temp: ($('#myTextBox').val().length > 0 ? parseInt($('#myTextBox').val()) : -99999999),

How can it be called as null?

share|improve this question
2  
Have you been able to reproduce the behaviour the user saw? What happens if you enter a non-numeric value in the field in question, say "abc"? Or " " (a space character)? (And as an aside, never use parseInt() on user-entered data without specifying the radix in the second parameter - if the user happens to enter a leading zero some browsers will interpret that as octal, while a leading "0x" causes the number to be taken as hexadecimal.) – nnnnnn Nov 12 '12 at 9:24
@nnnnnn Then the method isn't even called. The error in the title doesn't happen. – petko_stankoski Nov 12 '12 at 10:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.