Online.aspx.cs
资源名称:OA_at.rar [点击查看]
上传用户:tree100901
上传日期:2007-06-03
资源大小:2295k
文件大小:2k
源码类别:
OA系统
开发平台:
C#
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- using System.Data.SqlClient;
- using System.Drawing;
- using System.Web;
- using System.Web.SessionState;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.HtmlControls;
- namespace OA
- {
- /// <summary>
- /// Online 的摘要说明。
- /// </summary>
- public class Online : System.Web.UI.Page
- {
- protected System.Web.UI.WebControls.DataGrid MyDataGrid;
- private void Page_Load(object sender, System.EventArgs e)
- {
- SqlConnection MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
- MyConnection.Open();
- DataSet ds= new DataSet();
- SqlDataAdapter MyCommand = new SqlDataAdapter("OnlineUser",MyConnection);
- MyCommand.SelectCommand.CommandType = CommandType.StoredProcedure;
- MyCommand.Fill(ds,"Online");
- MyDataGrid.DataSource = ds.Tables[0].DefaultView;
- MyDataGrid.DataBind();
- // 在此处放置用户代码以初始化页面
- MyConnection.Close();
- }
- public void MyDataGrid_ItemDatabound(Object sender, DataGridItemEventArgs e)
- {
- if((e.Item.ItemType == ListItemType.Item) || (e.Item.ItemType == ListItemType.AlternatingItem))
- {
- e.Item.Cells[0].Style["cursor"]="hand";
- e.Item.Cells[0].Attributes.Add("onclick","window.open('ShortcutNewMessage.aspx?Accepter="+e.Item.Cells[0].Text+"','_blank','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,revisable=no,left=100,top=0,width=445,height=352')");
- }
- }
- #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
- }
- }