To get detail asp.net error page, you just need to do couple of changes in web.config file
SafeMode MaxControls=“200“ CallStack=“false“…
to…
SafeMode MaxControls=“200“ CallStack=“true“…
You will also need to set custom errors to 'Off' .
customErrors mode=“Off“
You will no longer see the “An unexpected error has occurred” error page and instead you get a lovely ’standard ASP.Net error page’ with the stack trace and everything…development has got that little bit easier!!