MVC3入门试练--控制器
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Web.Mvc;namespaceMvcApplication1.Controllers{publicclassStoreController:Controller{////GET:/Store///publicActionResultIndex()//{//returnView();//}//控制器操作好像是WEB浏览器直接调用控制器类中的方法。//浏览地址:http://localhost:23836/storepublicstringIndex(){return"zhangdi";}//浏览地址:http://localhost:23836/store/Browse?genre=asfpublicstringBrowse(stringgenre){stringstr="genre="+HttpUtility.HtmlEncode(genre);returnstr;}//浏览地址:http://localhost:23836/store/details/6publicstringDetails(intid){return"returndetails="+HttpUtility.HtmlEncode(id);}}}
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。