I\'ve been trying to run ASP.Net MVC 1.0 on one machine, but can\'t get past this. I create a new MVC project (C#). It creates all the folders, views, controllers, models
Since you are referencing it in your Code Behind (ie. Default.aspx.cs) you need to include the namespace at the top of the file.
using System.Web.Mvc.Html;
is the Namespace that includes the RenderPartial extension method.