bbsonline.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. /// bbsonline 的摘要说明。
  18. /// </summary>
  19. public class bbsonline : 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    DataSet dsPending1;
  28. public string sql;
  29. public string sql1;
  30. public double sumone;
  31. public double sumonea;
  32. private void Page_Load(object sender, System.EventArgs e)
  33. {
  34. conn = new OleDbConnection(ConfigurationSettings.AppSettings["cnFriends.ConnectionString"]);
  35. DataSet dspower = new DataSet();
  36. OleDbDataAdapter cmd3 = new OleDbDataAdapter("SELECT sum(count1),f2_caption from(  select 0 as count1,forum_2.f2_caption,forum_2.f2_id  from online inner join forum_2 on online.boardid<>forum_2.f2_id  union  select count(id) as count1,forum_2.f2_caption,forum_2.f2_id  FROM online inner join forum_2 on online.boardid=forum_2.f2_id  group by forum_2.f2_caption,forum_2.f2_id   order by forum_2.f2_id asc  )  group by f2_caption,forum_2.f2_id  ORDER BY forum_2.f2_id asc",conn);
  37. conn.Open();
  38. //Create and fill the DataSet.
  39. cmd3.Fill(dspower,"forum_2");
  40. //Create a second DataAdapter for the Titles table.
  41. //Bind the Authors table to the parent Repeater control, and call DataBind.
  42. bbstat1.DataSource = dspower.Tables["forum_2"];
  43. Page.DataBind();
  44. sql="SELECT count(id) as maxonline  FROM online";
  45. dsPending=new DataSet();
  46. OleDbDataAdapter adWord=new OleDbDataAdapter(sql,conn);
  47. adWord.Fill(dsPending,"online");
  48. Page.DataBind();
  49. sumone=Convert.ToInt32(dsPending.Tables[0].Rows[0]["maxonline"]);
  50. sql1="SELECT count(id) as countother  FROM online   where boardid=0";
  51. dsPending1=new DataSet();
  52. OleDbDataAdapter adWord1=new OleDbDataAdapter(sql1,conn);
  53. adWord1.Fill(dsPending1,"online");
  54. Page.DataBind();
  55. sumonea=Convert.ToInt32(dsPending1.Tables[0].Rows[0]["countother"]);
  56. conn.Close();
  57. }
  58. #region Web 窗体设计器生成的代码
  59. override protected void OnInit(EventArgs e)
  60. {
  61. //
  62. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  63. //
  64. InitializeComponent();
  65. base.OnInit(e);
  66. }
  67. /// <summary>
  68. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  69. /// 此方法的内容。
  70. /// </summary>
  71. private void InitializeComponent()
  72. {    
  73. this.Load += new System.EventHandler(this.Page_Load);
  74. }
  75. #endregion
  76. }
  77. }