bbsonline_detail.aspx.cs
资源名称:论坛源码.rar [点击查看]
上传用户:scene123
上传日期:2010-02-19
资源大小:3311k
文件大小:3k
源码类别:
.net编程
开发平台:
C#
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Web;
- using System.Web.SessionState;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.HtmlControls;
- using System.Data.OleDb;
- using System.Configuration;
- using System.Text;
- namespace kuangren
- {
- /// <summary>
- /// bbsonline_detail 的摘要说明。
- /// </summary>
- public class bbsonline_detail : System.Web.UI.Page
- {
- protected int intRunTime;
- protected DateTime dtStartTime = DateTime.Now;
- protected System.Data.OleDb.OleDbCommand cmd3;
- protected System.Data.OleDb.OleDbConnection conn;
- protected System.Web.UI.WebControls.Repeater bbstat1;
- public DataSet dsPending;
- public DataSet dsPending1;
- public string sql;
- public string sql1;
- public double sumone;
- public double sumonea;
- public string GetPath1(object o)
- {
- if ((string)o == "1")
- return "admin_1.gif";
- if ((string)o == "2")
- return "admin_2.gif";
- if ((string)o == "42")
- return "guest_1.gif";
- else
- return "user_1.gif";
- }
- public string GetPath(object o)
- {
- if ((string)o == "")
- return "其他位置";
- else
- return ""+o+"";
- }
- private void Page_Load(object sender, System.EventArgs e)
- {
- conn = new OleDbConnection(ConfigurationSettings.AppSettings["cnFriends.ConnectionString"]);
- DataSet dspower = new DataSet();
- 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);
- conn.Open();
- //Create and fill the DataSet.
- cmd3.Fill(dspower,"forum_2");
- //Create a second DataAdapter for the Titles table.
- //Bind the Authors table to the parent Repeater control, and call DataBind.
- bbstat1.DataSource = dspower.Tables["forum_2"];
- Page.DataBind();
- sql="SELECT count(id) as maxonline FROM online";
- dsPending=new DataSet();
- OleDbDataAdapter adWord=new OleDbDataAdapter(sql,conn);
- adWord.Fill(dsPending,"online");
- Page.DataBind();
- sumone=Convert.ToInt32(dsPending.Tables[0].Rows[0]["maxonline"]);
- conn.Close();
- }
- #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
- }
- }