vote up 0 vote down star

I'm trying to validate that a user only enters a long value as input (long bigger than 0 actually).

Compare and Range validator has DataTypeCheck for int values only. I was planning on using this class in a CustomValidator but then I would need to write both, client and server side validation code.

Do you know of any other good way of doing this? Thanks!

flag
1  
RegularExpressionValidator? – Russ Cam Sep 2 at 23:21

5 Answers

vote up 0 vote down

you can try AJAX control FilteredTextBox

http://www.asp.net/AJAX/AjaxControlToolkit/Samples/FilteredTextBox/FilteredTextBox.aspx

link|flag
vote up 0 vote down

//Server side

function Boolean isValid(){
  try{
    long a=long.Parse(textbox1.Text);
    if(a>0) 
      return true;  
    return false;
  }
  catch (Exception exp)
  {
    return false;  
  }
}

// Client Side

use parseLong() function instead of long.Parse(). Otherwise same as server side

link|flag
vote up 0 vote down

It looks like the Compare and Range Validators will work with longs. Setting the type to "Integer" will allow it to be valid for longs as well.

For server side validation, just use if(Page.IsValid){...} which will trigger the appropriate validation.

link|flag
vote up 0 vote down

Server Side

Boolean IsLong(String input)
{
    Int64 r;
    return Int64.TryParse(input, out r);
}

Client Side

function isLong(field) {    
    field.value = field.value.replace(/[^0-9]/, '');   
    return (field.value.length < 19);
}
link|flag
vote up 0 vote down

Use a RegularExpressionValidator with an expression of

"^\d*[1-9]\d*$"

This will validate that it is any number of digits with at least one 1-9, (so greater than zero).

link|flag

Your Answer

Get an OpenID
or

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