2013年3月28日
摘要: namespace Razor.Controllers{ public class JSController : Controller { public ActionResult Index() { List<string> FriendsId = new List<string> { "S1", "S2", "S3", "S4" }; ViewBag.FriendsId = FriendsId; return View(); } }}@{ ViewBag.Title = "Ind 阅读全文
posted @ 2013-03-28 18:06 一路前行 阅读(989) 评论(0) 推荐(0) 编辑
摘要: Model类:publicclassDSourceModel{[Required][Display(Name="状态")]publicstringSourceStatus{get;set;}}Controller类:publicclassDataSourceController:Controller{publicActionResultDataSrcAdd(){varselectStatusList=newList<SelectListItem>(){newSelectListItem(){Value="1",Text="启用&qu 阅读全文
posted @ 2013-03-28 18:02 一路前行 阅读(2788) 评论(0) 推荐(0) 编辑