bbsonline_detail.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_detail 的摘要说明。
  18. /// </summary>
  19. public class bbsonline_detail : 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. public string GetPath1(object o)
  33. {
  34. if ((string)o == "1")
  35. return "admin_1.gif";
  36. if ((string)o == "2")
  37. return "admin_2.gif";
  38. if ((string)o == "42")
  39. return "guest_1.gif";
  40. else
  41. return "user_1.gif";
  42. }
  43. public string GetPath(object o)
  44. {
  45. if ((string)o == "")
  46. return "其他位置";
  47. else
  48. return ""+o+"";
  49. }
  50. private void Page_Load(object sender, System.EventArgs e)
  51. {
  52. conn = new OleDbConnection(ConfigurationSettings.AppSettings["cnFriends.ConnectionString"]);
  53. DataSet dspower = new DataSet();
  54. OleDbDataAdapter cmd3 = new OleDbDataAdapter("SELECT id, username,userclass, startime, browser, boardid,f2_caption,lastimebk  FROM online left outer join  forum_2 on forum_2.f2_id=online.boardid  ORDER BY startime ASC",conn);
  55. conn.Open();
  56. //Create and fill the DataSet.
  57. cmd3.Fill(dspower,"forum_2");
  58. //Create a second DataAdapter for the Titles table.
  59. //Bind the Authors table to the parent Repeater control, and call DataBind.
  60. bbstat1.DataSource = dspower.Tables["forum_2"];
  61. Page.DataBind();
  62. sql="SELECT count(id) as maxonline  FROM online";
  63. dsPending=new DataSet();
  64. OleDbDataAdapter adWord=new OleDbDataAdapter(sql,conn);
  65. adWord.Fill(dsPending,"online");
  66. Page.DataBind();
  67. sumone=Convert.ToInt32(dsPending.Tables[0].Rows[0]["maxonline"]);
  68. conn.Close();
  69. }
  70. #region Web 窗体设计器生成的代码
  71. override protected void OnInit(EventArgs e)
  72. {
  73. //
  74. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  75. //
  76. InitializeComponent();
  77. base.OnInit(e);
  78. }
  79. /// <summary>
  80. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  81. /// 此方法的内容。
  82. /// </summary>
  83. private void InitializeComponent()
  84. {    
  85. this.Load += new System.EventHandler(this.Page_Load);
  86. }
  87. #endregion
  88. }
  89. }