I got some weird error with response.redirect() and the project wasn\'t building at all.. when I removed the try-catch block that was surrounding the b
I don't think there is any known issue here.
You simply can't do a Redirect() inside a try/catch block because Redirect leaves the current control to another .aspx (for instance), which leaves the catch in the air (can't come back to it).
EDIT: On the other hand, I might have had all of this figured backwards. Sorry.