摘要: #region 绑定下拉菜单 /// /// 绑定下拉菜单 /// /// /// /// /// /// /// private void BindDropList(string viewDataName, IEnumerable source, string dataValueField, string dataTextField, string selectval) { ViewData[viewDataName] = new SelectList(source, dataValueField, dataTextField, selectval); }在页面上绑定@H... 阅读全文
posted @ 2012-06-27 19:21 kevinzw 阅读(1757) 评论(2) 推荐(0) 编辑