Hi I'm a beginner in Asp.net actually I'm trying to prevent the user from inserting letter in the phone number text box, I am trying this code but it doesn't work.
private void TxtBox5_KeyPress(object sender, KeyPressEventArgs e)
{
char ch = e.KeyChar;
if (!Char.IsDigit(ch) && ch !=8)
{
e.Handled = true;
}
}