这节我们让ASP.NET MVC真正的跑起来
一、新建Controller
首先我们自己新建一 个新的Controller在Controllers上点右键,添加,Controller选项
之后出现一个对话框:
这里我们将 之起名为EiceController
附注一下,这里是个纯广告,无兴趣可略过此行:www.eice.com.cn 为您建立Web2.0社交网站
默认生成的代码如下:
//记不记得前面讲过的,所有 Controller都要继承于Controller类
public class EiceController : Controller
{
public ActionResult Index()
{
return View();
}
}
时间: 2025-01-26 22:55:36