In your web.config file turn custom errors off:
<system.web>
<customErrors mode="Off">
</customErrors>
Please note this is not the recommended approach. You should probably keep it as it is and instead take a look at windows event logs to see if any asp.net errors have been logged there.
Long term you would probably benefit from some kind of exception handling / logging strategy:
- ELMAH
- Enterprise Library (Exception Handling Application Block)