MVC3入门试练--控制器
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace MvcApplication1.Controllers { public class StoreController : Controller { // // GET: /Store/ //public ActionResult Index() //{ // return View(); //} //控制器操作好像是WEB浏览器直接调用控制器类中的方法。 //浏览地址:http://localhost:23836/store public string Index() { return "zhangdi"; } //浏览地址:http://localhost:23836/store/Browse?genre=asf public string Browse(string genre) { string str = "genre=" + HttpUtility.HtmlEncode(genre); return str; } //浏览地址:http://localhost:23836/store/details/6 public string Details(int id) { return "return details=" + HttpUtility.HtmlEncode(id); } } }
创新互联成立于2013年,我们提供高端网站建设公司、成都网站制作、网站设计、网站定制、成都全网营销推广、小程序制作、微信公众号开发、成都网站营销服务,提供专业营销思路、内容策划、视觉设计、程序开发来完成项目落地,为成都木制凉亭企业提供源源不断的流量和订单咨询。
网站题目:MVC3入门试练--控制器
文章源于:http://myzitong.com/article/ijggoo.html