RollFilesManager.aspx.cs
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:5k
- using System;
- using System.Data;
- using System.Configuration;
- using System.Collections.Generic;
- 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;
- public partial class FileBooks_RollFilesManager : System.Web.UI.Page
- {
- /// <summary>
- /// 模板
- /// </summary>
- Model.Rolls MR = new Model.Rolls();
- /// <summary>
- /// 业务
- /// </summary>
- BLL.Rolls BR = new BLL.Rolls();
- /// <summary>
- /// 查询条件
- /// </summary>
- public string TiaoJian
- {
- get
- {
- if (ViewState["RollsTiaoJian"] == null)
- {
- return "";
- }
- else
- {
- return ViewState["RollsTiaoJian"].ToString();
- }
- }
- set { ViewState["RollsTiaoJian"] = value; }
- }
- protected void Page_Load(object sender, EventArgs e)
- {
- LoginLogic.MatchLoad("../", "FileBooks_RollFilesManager");
- if (!IsPostBack)
- {
- TiaoJian = "";
- if (Request.QueryString["TiaoJian"] != null)
- {
- TiaoJian = Server.UrlDecode(Request.QueryString["TiaoJian"].ToString());
- }
- MyDataBind(1);
- }
-
- }
- /// <summary>
- /// 获取信息
- /// </summary>
- /// <param name="pidx">页号</param>
- public void MyDataBind(int pidx)
- {
- AspNetPager1.RecordCount = BR.GetCount(TiaoJian);
- List<Model.Rolls> LRData = BR.GetPageList(20, pidx, "ID", false, TiaoJian);
- if (LRData.Count == 0)
- {
- Model.Rolls MR = new Model.Rolls();
-
- LRData.Add(MR);
- }
- GridView1.DataSource = LRData;
- GridView1.DataBind();
- }
- /// <summary>
- /// 密级类别
- /// </summary>
- /// <returns></returns>
- public string JuanAnMiJi()
- { if (Eval("JAMJ") != null)
- {
- return EnumGet.GetMiJiName(Eval("JAMJ").ToString());
- }
- else
- {
- return "";
- }
- }
-
- /// <summary>
- /// 凭证类别
- /// </summary>
- /// <returns></returns>
- public string PingZhengLeiBie()
- {
- if (Eval("PZLB") != null)
- {
- return EnumGet.GetPingZhengName(Eval("PZLB").ToString());
- }
- else
- {
- return "";
- }
- }
-
- /// <summary>
- /// 卷库
- /// </summary>
- /// <returns></returns>
- public string SuoShuJuanKu()
- {
- if (Eval("SSJK") != null)
- {
- return EnumGet.GetRollRoomsName(int.Parse(Eval("SSJK").ToString()));
- }
- else
- {
- return "";
- }
- }
-
- /// <summary>
- /// 操作
- /// </summary>
- /// <returns></returns>
- public string CaoZuo()
- {
- string Id = Eval("Id").ToString();
- //编辑 清空密码 删除
- string Rtstr = "<a href='RollFilesAdd.aspx'>添加案卷</a> ";
- Rtstr += "<a href='RollFilesEdit.aspx?id=" + Id + "'>修改案卷信息</a> ";
-
- return Rtstr;
- }
- protected void AspNetPager1_PageChanging(object src, Wuqi.Webdiyer.PageChangingEventArgs e)
- {
- MyDataBind(e.NewPageIndex);
- }
- protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
- {
- for (int i = 0; i < GridView1.Rows.Count; i++)
- {
- //首先判断是否是数据行
- if (e.Row.RowType == DataControlRowType.DataRow)
- {
- //当鼠标停留时更改背景色
- e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#F0F0F0'");
- //当鼠标移开时还原背景色
- e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c");
- }
- }
- }
- protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
- {
- for (int i = 0; i <= GridView1.Rows.Count - 1; i++)
- {
- CheckBox cbox = (CheckBox)GridView1.Rows[i].FindControl("CheckBoxItem");
- if (CheckBox1.Checked)
- {
- cbox.Checked = true;
- }
- else
- {
- cbox.Checked = false;
- }
- }
- }
- protected void DelButton1_Click(object sender, EventArgs e)
- {
- try
- {
- for (int i = 0; i <= GridView1.Rows.Count - 1; i++)
- {
- CheckBox cbox = (CheckBox)GridView1.Rows[i].FindControl("CheckBoxItem");
- if (cbox.Checked)
- {
- // Response.Write(GridView1.Rows[i].Cells[1].Text.ToString() + ":True");
- int Id = int.Parse(GridView1.Rows[i].Cells[1].Text.ToString());
-
- BR.Delete(Id);
- }
- else
- {
- // Response.Write((GridView1.Rows[i].Cells[1]).Text.ToString() + ":False");
- }
- }
- MessageBox.Show("删除完成!");
- }
- catch (Exception exp)
- { MessageBox.Show(exp.Message); }
- MyDataBind(AspNetPager1.CurrentPageIndex);
- }
- }