可以在这里设置:
呵呵 跟我第一次学习一样啊
设置起始页要在Global.asax中设置controller 和 action
routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "MyMvc", action = "Home", id = "" } // Parameter defaults );
现在你在网站 属性 web 将特定页中的内容删掉就可以了
请问怎么设置呢,能不能具体一 点,我是初学
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
controller:控制器
action:控制器里面的方法
public class HomeController : Controller
{
public ActionResult Index() { return View();}
}