using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using WeiSha.Common; using Song.ServiceInterfaces; using Song.Entities; using WeiSha.WebControl; namespace Song.Site.Manage.Content { public partial class DownloadRecycle : Extend.CustomPage { protected void Page_Load(object sender, EventArgs e) { if (!this.IsPostBack) { ddlColumnBind(); BindData(null, null); } } /// /// 院系下拉绑定 /// private void ddlColumnBind() { //Song.Entities.DownloadCategory[] pc = Business.Do().CategoryAll(null, true); //this.ddlColumn.DataSource = pc; //this.ddlColumn.DataTextField = "Dc_Name"; //this.ddlColumn.DataValueField = "Dc_Id"; //this.ddlColumn.DataBind(); // this.ddlColumn.Items.Insert(0, new ListItem(" -- 所有分类 -- ", "-1")); } /// /// 绑定列表 /// protected void BindData(object sender, EventArgs e) { try { //总记录数 int count = 0; //当前选择的栏目id int col = Convert.ToInt16(ddlColumn.SelectedItem.Value); Song.Entities.Download[] eas = null; Song.Entities.Organization org = Business.Do().OrganCurrent(); eas = Business.Do().DownloadPager(org.Org_ID, col, true, this.tbSear.Text, Pager1.Size, Pager1.Index, out count); GridView1.DataSource = eas; GridView1.DataKeyNames = new string[] { "Di_id" }; GridView1.DataBind(); Pager1.RecordAmount = count; } catch (Exception ex) { Message.ExceptionShow(ex); } } protected void btnsear_Click(object sender, EventArgs e) { Pager1.Index = 1; BindData(null, null); } /// /// 删除 /// /// /// protected void DeleteEvent(object sender, EventArgs e) { try { string keys = GridView1.GetKeyValues; foreach (string id in keys.Split(',')) { Business.Do().DownloadDelete(Convert.ToInt16(id)); } BindData(null, null); } catch (Exception ex) { Message.ExceptionShow(ex); } } /// /// 还原 /// /// /// protected void RecoverEvent(object sender, EventArgs e) { try { string keys = GridView1.GetKeyValues; foreach (string id in keys.Split(',')) { Business.Do().DownloadRecover(Convert.ToInt16(id)); } BindData(null, null); } catch (Exception ex) { Message.ExceptionShow(ex); } } } }