6
Reply

Catch exception help please

srussell

srussell

Aug 12 2004 5:06 PM
3.1k
Doing simple date work and trying to validate a date. this.Label1.Text="Bad Date was attempted"; private void TextBox1_TextChanged(object sender, System.EventArgs e) { try { Convert.ToDateTime( this.TextBox1.Text.ToString()); } catch(Exception ee) { this.Label1.Text="Bad Date was attempted"; } What is the catch() expression to catch a bad date like 18/31/2004 Exception ee is missing it? TIA

Answers (6)
Next Recommended Forum