ASP.NET MVC 5运行自定义视图时出现异常

时间:2014-05-25 19:22:52

标签: asp.net asp.net-mvc-5

无法从程序集Mark.DAL.CartInitializer加载Markweb类型。

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.TypeLoadException: Could not load type 'Mark.DAL.MarkInitializer' from assembly 'Markweb1'.

错误来源:

public ActionResult Index()
{
  return View(db.mark.ToList());
}

1 个答案:

答案 0 :(得分:0)

这通常是加载错误装配的结果。如果您有一个项目引用另一个项目(例如“引用”类库“的”Windows应用程序“类型)并且两者具有相同的程序集名称,则会出现此错误。重命名引用项目的程序集。或者您可能没有安装错误中指定的程序集。或者你的DLL依赖于其他DLL来完成它的工作,如果你没有复制或安装它们,你确实会得到这个错误信息。