我正在运行Visual Studio Ultimate 2013 Update 2(修复之后是更新3)。我在MVC应用程序中创建了Homecontroller
:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace HelloMVC.Controllers
{
public class HomeController : Controller
{
// GET: Home
public ActionResult Index()
{
return View();
}
}
}
我在Index
文件夹中有一个名为Views/Home
的文件,但View()
为红色,当我将鼠标悬停在该文件夹上时,表示无法解析视图Index
。< / p>
如果我再次删除索引页并尝试create razor views > create view Index
,我会收到错误cannot perform this action, most likely due to errors in the source code
我的猜测是,它与Razor视图无法正常工作有关,但我尝试过修复,这似乎无法解决。
我似乎找不到与我的其他电脑有任何不同,这个代码工作得很好。
当我构建解决方案并运行它时,一切似乎都有效,所以我猜这个问题是编辑器相关的东西