ASP .Net MVC应用程序

时间:2018-10-25 04:42:22

标签: asp.net asp.net-mvc

我正在尝试编写一个简单的ASP.NET MVC应用程序。但是最后,在将观点纳入行动结果时,我遇到了一个问题。我附加了控制器文件和错误消息的代码段。

错误消息是:

  

运行所选代码生成器时发生错误:   获取类型为“ PracticeMVC.Models.myc,Models.DataClasses1.designer.cs.dll,Version = 0.0.0.0,Culture =中性,PublicKeyToken = null”时出错。尝试重建项目。

我应该采取什么步骤来解决此错误?

控制器DataLogicController.cs

    public ActionResult AddCustomer(int p, string q, string r)
    {
        DataLogic obj = new DataLogic();
        obj.InsertData(p, q, r);

        return View();
    }

    public ActionResult UpdateCustomer(int p, string q, string r)
    {
        DataLogic obj = new DataLogic();
        obj.UpdateData(p,q,r);

        return View();
    }

    public ActionResult DeleteCustomer(int p)
    {
        DataLogic obj = new DataLogic();
        obj.DeleteData(p);

        return View();
    }

1 个答案:

答案 0 :(得分:0)

在这种情况下, 首先,从引用中删除mvc.dll。然后重新安装asp .net mvc软件包,然后清理应用程序解决方案,最后构建该解决方案并将视图添加到“操作结果”中。