ManageInfomation.aspx.cs
资源名称:OA_at.rar [点击查看]
上传用户:tree100901
上传日期:2007-06-03
资源大小:2295k
文件大小:7k
源码类别:
OA系统
开发平台:
C#
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- using System.Data.SqlClient;
- using System.Drawing;
- using System.Web;
- using System.Web.SessionState;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.HtmlControls;
- namespace OA
- {
- /// <summary>
- /// ManageInfomation 的摘要说明。
- /// </summary>
- public class ManageInfomation : System.Web.UI.Page
- {
- protected System.Data.SqlClient.SqlConnection MyConnection;
- private int totalInfomation;
- protected System.Web.UI.WebControls.Label stats;
- protected System.Web.UI.WebControls.DataGrid MyDataGrid;
- public string PID;
- private void Page_Load(object sender, System.EventArgs e)
- {
- CheckUser CHU = new CheckUser();
- CHU.UserName = User.Identity.Name;
- PID = CHU.UserID.ToString();
- if(CHU.Is_FileManager() == false)
- Response.Write("<script>alert('对不起,你没有查看此页面的权限!');history.back(2)</" + "script>");
- MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
- if(!IsPostBack)
- {
- MyDataGrid.DataSource = CreateDataSource();
- MyDataGrid.DataBind();
- } // 在此处放置用户代码以初始化页面
- }
- private ICollection CreateDataSource()
- {
- MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
- SqlDataAdapter MyCommand = new SqlDataAdapter("SelectALLInfomation",MyConnection);
- MyCommand.SelectCommand.CommandType = CommandType.StoredProcedure;
- DataSet ds = new DataSet();
- MyCommand.Fill(ds,"Infomation");
- MyConnection.Close();
- DataView dv = ds.Tables[0].DefaultView;
- totalInfomation=ds.Tables[0].Rows.Count;
- if (Session["tableALLInfomation"] == null)
- Session["tableALLInfomation"] = ds.Tables[0];
- if (Session["sorterALLInfomation"] == null)
- {
- Session["sorterALLInfomation"] ="Date";
- Session["sortALLInfomation"]=" DESC";
- }
- dv.Sort = (String) Session["sorterALLInfomation"]+(String) Session["sortALLInfomation"];
- ShowStats();
- return dv;
- }
- public void MyDataGrid_PageIndexChanged(Object sender, DataGridPageChangedEventArgs e)
- {
- DataGrid gridThatCausedEvent = (DataGrid) sender;
- gridThatCausedEvent.CurrentPageIndex = e.NewPageIndex;
- gridThatCausedEvent.DataSource = CreateDataSource();
- gridThatCausedEvent.DataBind();
- }
- public void MyDataGrid_Sort(Object sender, DataGridSortCommandEventArgs e)
- {
- Session["sorterALLInfomation"] = (string)e.SortExpression;
- Session["sortALLInfomation"]=(Session["sortALLInfomation"].ToString()==" ASC")?
- " DESC":" ASC";
- MyDataGrid.DataSource = CreateDataSource();
- MyDataGrid.DataBind();
- foreach (DataGridItem item in MyDataGrid.Controls[0].Controls)
- {
- if (item.ItemType == ListItemType.Header)
- {
- Label lb =(Label)item.FindControl((string)Session["sorterALLInfomation"]);
- lb.Text = (Session["sortALLInfomation"].ToString()==" DESC")?
- "↓":"↑";
- }
- }
- }
- private void ShowStats()
- {
- if (totalInfomation == 0)
- {
- MyDataGrid.Visible = false;
- stats.Text = "未找到符合条件的记录!";
- }
- else
- {
- MyDataGrid.Visible = true;
- int startOffset = (totalInfomation > 0) ?
- (MyDataGrid.CurrentPageIndex*MyDataGrid.PageSize+1) : 0;
- int pageEndOffset = (MyDataGrid.CurrentPageIndex+1)*(MyDataGrid.PageSize);
- int endOffset = (pageEndOffset > totalInfomation) ? totalInfomation : pageEndOffset;
- string SortName;
- switch(Session["sorterALLInfomation"].ToString())
- {
- case "Title":
- SortName = "标题";
- break;
- case "Date":
- SortName="录入时间";
- break;
- case "Name":
- SortName = "录入";
- break;
- case "Writer":
- SortName = "作者";
- break;
- case "InfoCategoryName":
- SortName = "类别";
- break;
- case "State":
- SortName = "浏览次数";
- break;
- default:
- SortName="录入时间";
- break;
- }
- stats.Text = String.Format("<B>共</B>{2}<B>条记录中的</B>{0}-{1}<B>条记录 根据</B>{3}<B>排序</B>",
- startOffset,endOffset,totalInfomation,SortName);
- MyDataGrid.PagerStyle.Visible = (totalInfomation <= MyDataGrid.PageSize) ? false : true;
- }
- }
- public void MyDataGrid_ItemCreated(Object sender, DataGridItemEventArgs e)
- {
- if((e.Item.ItemType == ListItemType.Item) || (e.Item.ItemType == ListItemType.AlternatingItem))
- {
- }
- if((e.Item.ItemType == ListItemType.Header))
- {
- for(int i = 0; i<6; i++)
- {
- Label lb = new Label();
- if(i==0)
- lb.ID = "Title";
- if(i==1)
- lb.ID = "Date";
- if(i==2)
- lb.ID = "Writer";
- if(i==3)
- lb.ID = "Name";
- if(i==4)
- lb.ID = "InfoCategoryName";
- if(i==5)
- lb.ID = "State";
- lb.Text = "↓";
- e.Item.Cells[i].Controls.Add(lb);
- }
- }
- }
- public void MyDataGrid_ItemDataBound(Object sender, DataGridItemEventArgs e)
- {
- if((e.Item.ItemType == ListItemType.Item) || (e.Item.ItemType == ListItemType.AlternatingItem))
- {
- string InfoID = DataBinder.Eval(e.Item.DataItem, "InfoID").ToString();
- if(e.Item.Cells[0].Text.Length>15)
- e.Item.Cells[0].Text = e.Item.Cells[0].Text.Substring(0,15)+"......";
- LinkButton myDeleteButton1;
- LinkButton myDeleteButton2;
- myDeleteButton1 = (LinkButton) e.Item.Cells[6].Controls[0];
- myDeleteButton2 = (LinkButton) e.Item.Cells[7].Controls[0];
- myDeleteButton1.Attributes.Add("onclick", @"if(confirm('你确认要修改这条记录吗?')) window.open('EditInfo.aspx?InfoID="+InfoID+"','_blank','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,revisable=no,left=100,top=0,width=600,height=500');return false;");
- myDeleteButton2.Attributes.Add("onclick", @"return confirm('你确认要删除这条记录吗?');");
- }
- }
- public void MyDataGrid_Delete(Object sender, DataGridCommandEventArgs E)
- {
- SqlCommand MyCommand = new SqlCommand("DeleteInfomation",MyConnection);
- MyCommand.CommandType = CommandType.StoredProcedure;
- MyCommand.Parameters.Add(new SqlParameter("@InfoID", SqlDbType.Int, 4));
- MyCommand.Parameters["@InfoID"].Value = MyDataGrid.DataKeys[(int)E.Item.ItemIndex];
- if(MyConnection.State.ToString()=="Closed")
- MyConnection.Open();
- try
- {
- MyCommand.ExecuteNonQuery();
- }
- catch (SqlException)
- {
- RegisterStartupScript("alert","<script>alert('出现错误:未能删除记录!')</" + "script>");
- }
- MyConnection.Close();
- if ((MyDataGrid.CurrentPageIndex!=0)&&((int)E.Item.ItemIndex==0))
- {
- if (MyDataGrid.Items.Count==1)
- MyDataGrid.CurrentPageIndex-=1;
- }
- MyDataGrid.DataSource = CreateDataSource();
- MyDataGrid.DataBind();
- }
- #region Web 窗体设计器生成的代码
- override protected void OnInit(EventArgs e)
- {
- //
- // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
- //
- InitializeComponent();
- base.OnInit(e);
- }
- /// <summary>
- /// 设计器支持所需的方法 - 不要使用代码编辑器修改
- /// 此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.Load += new System.EventHandler(this.Page_Load);
- }
- #endregion
- }
- }