error in asp.net
-
hey i'll know how i can catch error in asp.net DADAX -- modified at 13:51 Sunday 23rd April, 2006
Please write so somebody can understand you. I didn't understood a word you said. -------------------------------------------------------- My development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
-
Please write so somebody can understand you. I didn't understood a word you said. -------------------------------------------------------- My development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
-
hey and sorry just i need to know how i can catch error in asp.net i hope that you understand me :( and thanks anyway DADAX
-
Using "try catch" block:
try {
// do something
}
catch( Exception ex ) {
// do something if an error in try block occurs
}