I just installed Visual Studio 2015 RC on a clean Win 8.1 machine and created the application from the Asp.NET 5 Preview / Web Site preview template.
If I clicked the start button, the web application will start, but the change, for example, ViewBag.Messagein the home controller does not reflect the change in the browser after the page is reloaded.
public ActionResult About()
{
ViewBag.Message = "Your application description page.";
return View();
}
I looked around, but could not find the cause of the problem. IE11 and Chrome behave the same. Client side caching is disabled. This article assumes that it should work: http://docs.asp.net/en/latest/tutorials/your-first-aspnet-application.html
What am I missing here?