码迷,mamicode.com
首页 > Web开发 > 详细

MVC入门试练--控制器

时间:2014-11-25 18:54:39      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:mvc控制器   控制器   

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);
        }

    }
}

bubuko.com,布布扣

本文出自 “程序猿的家--Hunter” 博客,请务必保留此出处http://962410314.blog.51cto.com/7563109/1582417

MVC入门试练--控制器

标签:mvc控制器   控制器   

原文地址:http://962410314.blog.51cto.com/7563109/1582417

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!