Online.aspx.cs
上传用户:tree100901
上传日期:2007-06-03
资源大小:2295k
文件大小:2k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Data.SqlClient;
  6. using System.Drawing;
  7. using System.Web;
  8. using System.Web.SessionState;
  9. using System.Web.UI;
  10. using System.Web.UI.WebControls;
  11. using System.Web.UI.HtmlControls;
  12. namespace OA
  13. {
  14. /// <summary>
  15. /// Online 的摘要说明。
  16. /// </summary>
  17. public class Online : System.Web.UI.Page
  18. {
  19. protected System.Web.UI.WebControls.DataGrid MyDataGrid;
  20. private void Page_Load(object sender, System.EventArgs e)
  21. {
  22. SqlConnection MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
  23. MyConnection.Open();
  24. DataSet ds= new DataSet();
  25. SqlDataAdapter MyCommand = new SqlDataAdapter("OnlineUser",MyConnection);
  26.             MyCommand.SelectCommand.CommandType = CommandType.StoredProcedure;
  27. MyCommand.Fill(ds,"Online");
  28. MyDataGrid.DataSource = ds.Tables[0].DefaultView;
  29. MyDataGrid.DataBind();
  30. // 在此处放置用户代码以初始化页面
  31. MyConnection.Close();
  32. }
  33. public void MyDataGrid_ItemDatabound(Object sender, DataGridItemEventArgs e) 
  34. {
  35. if((e.Item.ItemType == ListItemType.Item) || (e.Item.ItemType == ListItemType.AlternatingItem))
  36. {
  37. e.Item.Cells[0].Style["cursor"]="hand";
  38. 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')");
  39. }
  40. }
  41. #region Web 窗体设计器生成的代码
  42. override protected void OnInit(EventArgs e)
  43. {
  44. //
  45. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  46. //
  47. InitializeComponent();
  48. base.OnInit(e);
  49. }
  50. /// <summary>
  51. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  52. /// 此方法的内容。
  53. /// </summary>
  54. private void InitializeComponent()
  55. {    
  56. this.Load += new System.EventHandler(this.Page_Load);
  57. }
  58. #endregion
  59. }
  60. }