MoreInfomation.aspx.cs
上传用户:tree100901
上传日期:2007-06-03
资源大小:2295k
文件大小:5k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Data.SqlClient;
  6. using System.Drawing;
  7. using System.Web;
  8. using System.Web.SessionState;
  9. using System.Web.UI;
  10. using System.Web.UI.WebControls;
  11. using System.Web.UI.HtmlControls;
  12. namespace OA
  13. {
  14. /// <summary>
  15. /// MoreInfomation 的摘要说明。
  16. /// </summary>
  17. public class MoreInfomation : System.Web.UI.Page
  18. {
  19. protected System.Data.SqlClient.SqlConnection MyConnection;
  20. protected System.Web.UI.WebControls.DataGrid MyDataGrid;
  21. public int InfoCategoryID=1,PageIndex=1;
  22. protected System.Web.UI.WebControls.Label PagePrev;
  23. protected System.Web.UI.WebControls.Label InfoCategoryName;
  24. protected System.Web.UI.WebControls.Label RCount;
  25. protected System.Web.UI.WebControls.Label PageNext;
  26. private void Page_Load(object sender, System.EventArgs e)
  27. {
  28. if (!IsPostBack)
  29. {
  30. MyConnection = new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
  31. if(Request.QueryString["InfoCategoryID"]!=null)
  32.                    InfoCategoryID = Int32.Parse(Request.QueryString["InfoCategoryID"].ToString());
  33. SqlCommand MyCommand00 = new SqlCommand("SelectInfoCategoryName",MyConnection);
  34. MyCommand00.CommandType = CommandType.StoredProcedure;
  35. MyCommand00.Parameters.Add(new SqlParameter("@InfoCategoryID", SqlDbType.Int, 4));
  36. MyCommand00.Parameters["@InfoCategoryID"].Value = InfoCategoryID;
  37. MyConnection.Open();
  38. SqlDataReader myReader =  MyCommand00.ExecuteReader();
  39. while(myReader.Read()) 
  40. {
  41. InfoCategoryName.Text = myReader.GetString(0).ToString();
  42. }
  43. myReader.Close();
  44. if(Request.QueryString["PageIndex"]!=null)
  45. PageIndex = Int32.Parse(Request.QueryString["PageIndex"].ToString());
  46. SqlCommand MyCommand0 = new SqlCommand("GetInfomation", MyConnection);
  47. MyCommand0.CommandType = CommandType.StoredProcedure;
  48. MyCommand0.Parameters.Add("@pageindex",1);
  49. MyCommand0.Parameters.Add("@pagesize",1);
  50. MyCommand0.Parameters.Add("@docount",true);
  51. MyCommand0.Parameters.Add("@InfoCategoryID",InfoCategoryID);
  52. if(MyConnection.State.ToString()=="Closed")
  53. MyConnection.Open();
  54. int RecordCount =  (int)MyCommand0.ExecuteScalar();
  55.                 RCount.Text = "记录总数:"+RecordCount.ToString();
  56.                 MyConnection.Close();
  57. MyDataGrid.DataSource = CreateDataSource();
  58. MyDataGrid.DataBind();
  59. int Prev = PageIndex-1;
  60. int Next = PageIndex+1;
  61. if(PageIndex ==1)
  62. {
  63. PagePrev.Text = "上页";
  64. PagePrev.Enabled =false;
  65. }
  66. else
  67. PagePrev.Text = "<a href ='MoreInfomation.aspx?InfoCategoryID="+InfoCategoryID+"&PageIndex="+Prev+"'>上页</"+"a>";
  68. int LastPage;
  69. if((RecordCount-RecordCount/MyDataGrid.PageSize*MyDataGrid.PageSize)>0)
  70. LastPage = RecordCount/MyDataGrid.PageSize+1;
  71. else
  72.                     LastPage = RecordCount/MyDataGrid.PageSize;
  73. if(PageIndex==LastPage)
  74. {
  75. PageNext.Text="下页";
  76. PageNext.Enabled = false;
  77. }
  78. else
  79. PageNext.Text = "<a href ='MoreInfomation.aspx?InfoCategoryID="+InfoCategoryID+"&PageIndex="+Next+"'>下页</"+"a>";
  80. }
  81. // 在此处放置用户代码以初始化页面
  82. }
  83. private ICollection CreateDataSource() 
  84. {
  85. MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
  86. SqlDataAdapter MyCommand = new SqlDataAdapter("GetInfomation",MyConnection);
  87. MyCommand.SelectCommand.CommandType = CommandType.StoredProcedure;
  88. MyCommand.SelectCommand.Parameters.Add("@pageindex",PageIndex);
  89. MyCommand.SelectCommand.Parameters.Add("@pagesize",MyDataGrid.PageSize);
  90. MyCommand.SelectCommand.Parameters.Add("@docount",false);
  91. MyCommand.SelectCommand.Parameters.Add("@InfoCategoryID",InfoCategoryID);
  92. DataSet ds = new DataSet();
  93. MyCommand.Fill(ds,"Infomation");
  94. MyConnection.Close();
  95. DataView dv = ds.Tables[0].DefaultView;
  96. /* totalDocument=ds.Tables[0].Rows.Count;
  97. if (Session["table"] == null)
  98. Session["table"] = ds.Tables[0];
  99. if (Session["sorter"] == null)
  100. {
  101. Session["sorter"] ="Date";
  102. Session["sort"]=" DESC";
  103. }
  104. dv.Sort = (String) Session["sorter"]+(String) Session["sort"];
  105. ShowStats();
  106. */ return dv;
  107. }
  108. public string Switch(object obj)
  109. {
  110. string str = obj.ToString();
  111. if (str.Length > 18)
  112. {
  113. return (str.Substring(0,18) + "......");
  114. }
  115. else
  116. {
  117. return str;
  118. }
  119. }
  120. #region Web 窗体设计器生成的代码
  121. override protected void OnInit(EventArgs e)
  122. {
  123. //
  124. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  125. //
  126. InitializeComponent();
  127. base.OnInit(e);
  128. }
  129. /// <summary>
  130. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  131. /// 此方法的内容。
  132. /// </summary>
  133. private void InitializeComponent()
  134. {    
  135. this.Load += new System.EventHandler(this.Page_Load);
  136. }
  137. #endregion
  138. }
  139. }