随笔分类 -  asp.net mvc

摘要:controller cspublic ActionResult AdvanceSearchForm() { SearchCriteriaModel model = new SearchCriteriaModel { SearchInAll = true }; return PartialView(... 阅读全文
posted @ 2015-07-05 18:51 Laven小叶 阅读(907) 评论(0) 推荐(0)
摘要:cshtmlControllerpublic ActionResult Index (int id?){ ...}如果访问这个页面的话,会连续访问两次,由于scr ='' 造成,把scr='' 去掉就可以了cshtml 阅读全文
posted @ 2015-06-28 21:29 Laven小叶 阅读(131) 评论(0) 推荐(0)
摘要:1. 绑定dropdownlist@{ IEnumerable salutationDdlitems = Model.SalutationDdl.Select(s => new SelectListItem { Text = s.DisplayText, Value = s.Value });} @... 阅读全文
posted @ 2014-03-02 18:04 Laven小叶 阅读(461) 评论(0) 推荐(0)