Thread: c# exceptions
View Single Post
Old 10-13-2003, 06:56 PM   #3 (permalink)
sdeming
Code Monkey
 
Join Date: Jul 2002
Location: Michigan
Posts: 85
sdeming is on a distinguished road
Use the StackTrace property:
Code:
public void exceptionCheck(){
 try {
  throw new Exception("test");
 } catch(Exception e){
   Response.Write(e.StackTrace);
 }
}
__________________
Scott
B4 09 BA 09 01 CD 21 CD 20 53 63 6F 74 74 24
sdeming is offline   Reply With Quote