bbstat.aspx.cs
上传用户:scene123
上传日期:2010-02-19
资源大小:3311k
文件大小:3k
源码类别:

.net编程

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.SessionState;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.HtmlControls;
  11. using System.Data.OleDb;
  12. using System.Configuration;
  13. using System.Text;
  14. namespace kuangren
  15. {
  16. /// <summary>
  17. /// bbstat 的摘要说明。
  18. /// </summary>
  19. public class bbstat : System.Web.UI.Page
  20. {
  21. protected int intRunTime;
  22. protected DateTime dtStartTime = DateTime.Now;
  23. protected System.Data.OleDb.OleDbCommand cmd3;
  24. protected System.Data.OleDb.OleDbConnection conn;
  25. protected System.Web.UI.WebControls.Repeater bbstat1;
  26. public    DataSet dsPending;
  27. public string sql;
  28. public double sumone;
  29.         public double sumtwo;
  30. public double sumthree;
  31. public double sumthree1;
  32. public string title;
  33. public int stat;
  34. public int Judgenum(int s1,int s2,int s3)
  35. {
  36. if (Convert.ToUInt32(Request.QueryString["action"])==1)
  37. {
  38. title="今日帖数";
  39. return s1;
  40. }
  41. if (Convert.ToUInt32(Request.QueryString["action"])==2)
  42. {
  43. title="主题数";
  44. return s2;
  45. }
  46. else
  47. {
  48. title="总帖数";
  49. return (s2+s3);}
  50. }
  51. private void Page_Load(object sender, System.EventArgs e)
  52. {
  53. conn = new OleDbConnection(ConfigurationSettings.AppSettings["cnFriends.ConnectionString"]);
  54. DataSet dspower = new DataSet();
  55. OleDbDataAdapter cmd3 = new OleDbDataAdapter("SELECT f2_topicnum,f2_replynum,f2_todaynum,f2_caption  FROM forum_2  ORDER BY f2_id asc",conn);
  56. conn.Open();
  57. //Create and fill the DataSet.
  58. cmd3.Fill(dspower,"forum_2");
  59. //Create a second DataAdapter for the Titles table.
  60. //Bind the Authors table to the parent Repeater control, and call DataBind.
  61. bbstat1.DataSource = dspower.Tables["forum_2"];
  62. Page.DataBind();
  63. //搜索所有发帖(各类)总和
  64. sql="SELECT sum(f2_topicnum) as sum1,sum(f2_replynum) as sum2,sum(f2_todaynum) as sum3  FROM forum_2";
  65. dsPending=new DataSet();
  66. OleDbDataAdapter adWord=new OleDbDataAdapter(sql,conn);
  67. adWord.Fill(dsPending,"forum_2");
  68. Page.DataBind();
  69. sumone=Convert.ToInt32(dsPending.Tables[0].Rows[0]["sum1"]);
  70. sumtwo=Convert.ToInt32(dsPending.Tables[0].Rows[0]["sum2"]);
  71. if (Convert.ToInt32(dsPending.Tables[0].Rows[0]["sum3"])!=0)
  72. {
  73. sumthree=Convert.ToInt32(dsPending.Tables[0].Rows[0]["sum3"]);
  74. sumthree1=Convert.ToInt32(dsPending.Tables[0].Rows[0]["sum3"]);
  75. }
  76. else
  77. {
  78. sumthree=1;
  79. sumthree=1;
  80. }
  81. conn.Close();
  82. }
  83. #region Web 窗体设计器生成的代码
  84. override protected void OnInit(EventArgs e)
  85. {
  86. //
  87. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  88. //
  89. InitializeComponent();
  90. base.OnInit(e);
  91. }
  92. /// <summary>
  93. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  94. /// 此方法的内容。
  95. /// </summary>
  96. private void InitializeComponent()
  97. {    
  98. this.Load += new System.EventHandler(this.Page_Load);
  99. }
  100. #endregion
  101. }
  102. }