Unhandled IIS Exception - How can I track it down

我与影子孤独终老i 提交于 2019-12-04 04:03:18
James

I created a custom unhanded exception module, which allowed retrieval of more information about the origin of the bug, and the eventual resolution of the issue.

Here is a link to a codeplex project that has code for an unhanded exception module: http://unhandledexception.codeplex.com/SourceControl/changeset/view/80132

Try the IIS Debug Diagnostics tools

http://support.microsoft.com/kb/919789

I'm looking at the text "Unable to find assembly 'Company.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'".

Are you missing an assembly, or do you have a version problem?

The error says the assembly can't be found. If it's in the bin folder and correctly formatted, then perhaps it's a permission error?

Does your Company.Common assembly have permissions that allow it to be read by your IIS AppPool identity?

You might also double-check to make sure that the assembly is listed in the system.web / compilation / assemblies section of your web.config.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!