I put some global error handling in place, but am having problems testing it by causing unhandled exceptions.
Here's all I can think of at the moment. Please feel free to add to this list with more ways to trip unhanndled exceptions.
1) Dangerous form data - Entering characters such as < and > in a text box and trying to submit
2) Put invalid values in a URL parameter - eg if you page is www.test.com/home?testid=XXX where XXX is the form number/identity # you are trying to pull up, put a number that doesn't exist in the URL and hit enter.
I'm sure I could change some stored procedures or otherwise mess with my data access components but I'd rather not have to change any code anywhere...I want to be able to generate these exceptions on the front end, like a user would.
Let me know what ideas you have, or if you all need any other info.