I need to write a validation for a textbox which value is < = 2147483647
my code is something like:
Textbox1.Text = "78987162789"
if(Int32.Parse(Textbox1.text) > 2147483647)
{
Messagebox("should not > ")
}
I am getting error message something like: value is too small or too big for Int. How can I fix this?