Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Error:
An unhandled exception of type 'System.Runtime.InteropServices.SEHException' occurred in mscorlib.dll


source not available form is opened and it shows
THE CALL STACK CONTAIN ONLY EXTERNAL CODE

I running web app on my local machine, can't understand anything please help.
Posted
Updated 20-Aug-15 18:44pm
v3

1 solution

SEHException is thrown in a situation where there is no equivalent managed exception and the error occurred in unmanaged code.

The source of the error can be basically anything. To have more information, use the debugger and see what the SEHException actually contains. The interesting properties are
- ErrorCode
- Message
- StackTrace

These should give you more information what is causing the problem.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900