If you’re as big a fan of My Name is Earl as I am, you’ll understand me when I say that Karma is punishing me today for the ASP code that I wrote circa 1998. I’ve been messing with some legacy ASP code that wasn’t working in one environment, and had to resort to this
On Error Resume Next
‘ Do stuff
If err.Number <> 0 Then
Response.Write “Number = “ & err.Number & “<p>“
Response.Write “Description = “ & err.Description & “<p>“
Response.Write “Source = “ & err.Source
err.Clear
End
I’ve been bad mouthing ASP.Net lately at work and in user groups (and RoR is just so shiny and new), but give me ASP.Net over spaghetti code ASP and VBScript any day of the week.
About Jeremy Miller
Jeremy is the Chief Software Architect at Dovetail Software, the coolest ISV in Austin. Jeremy began his IT career writing "Shadow IT" applications to automate his engineering documentation, then wandered into software development because it looked like more fun. Jeremy is the author of the open source StructureMap tool for Dependency Injection with .Net, StoryTeller for supercharged acceptance testing in .Net, and one of the principal developers behind FubuMVC. Jeremy's thoughts on all things software can be found at The Shade Tree Developer at http://codebetter.com/jeremymiller.
This entry was posted in
Uncategorized. Bookmark the
permalink. Follow any comments here with the
RSS feed for this post.