PromptSchedule.aspx.cs
资源名称:OA_at.rar [点击查看]
上传用户:tree100901
上传日期:2007-06-03
资源大小:2295k
文件大小:3k
源码类别:
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>
- /// PromptSchedule 的摘要说明。
- /// </summary>
- public class PromptSchedule : System.Web.UI.Page
- {
- protected System.Web.UI.HtmlControls.HtmlGenericControl DIV1;
- protected System.Data.SqlClient.SqlConnection MyConnection;
- protected System.Data.SqlClient.SqlDataAdapter MyCommand;
- protected System.Data.DataSet ds;
- protected System.Web.UI.WebControls.DataGrid MyDataGrid;
- protected System.Web.UI.HtmlControls.HtmlGenericControl DIV3;
- protected System.Web.UI.WebControls.DataGrid MyDataGrid1;
- protected System.Web.UI.HtmlControls.HtmlGenericControl DIV2;
- private void Page_Load(object sender, System.EventArgs e)
- {
- MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
- if(MyConnection.State.ToString()=="Closed")
- MyConnection.Open();
- ds= new DataSet();
- SqlCommand MyCommand0 = new SqlCommand("PersonID",MyConnection);
- MyCommand0.CommandType = CommandType.StoredProcedure;
- MyCommand0.Parameters.Add(new SqlParameter("@Name", SqlDbType.NVarChar, 50));
- MyCommand0.Parameters["@Name"].Value = User.Identity.Name;
- SqlDataReader myReader = MyCommand0.ExecuteReader();
- string PID="";
- try
- {
- while(myReader.Read())
- {
- PID = myReader.GetInt32(0).ToString();
- }
- myReader.Close();
- }
- finally
- {
- }
- SqlDataAdapter MyCommand = new SqlDataAdapter("PromptSchedule",MyConnection);
- MyCommand.SelectCommand.CommandType = CommandType.StoredProcedure;
- MyCommand.SelectCommand.Parameters.Add(new SqlParameter("@PersonID", SqlDbType.Int, 4));
- MyCommand.SelectCommand.Parameters["@PersonID"].Value = PID;
- MyCommand.Fill(ds,"Schedule");
- MyDataGrid.DataSource=ds.Tables["Schedule"].DefaultView;
- MyDataGrid.DataBind();
- if(ds.Tables["Schedule"].Rows.Count<=0)
- MyDataGrid.Visible=false;
- if(ds.Tables["Schedule"].Rows.Count>0)
- DIV1.InnerHtml ="<B>今天的日程计划:</B>"+ds.Tables["Schedule"].Rows.Count+"<B>项!</B>";
- SqlDataAdapter MyCommand1 = new SqlDataAdapter("PromptSchedule1",MyConnection);
- MyCommand1.SelectCommand.CommandType = CommandType.StoredProcedure;
- MyCommand1.SelectCommand.Parameters.Add(new SqlParameter("@PersonID", SqlDbType.Int, 4));
- MyCommand1.SelectCommand.Parameters["@PersonID"].Value = PID;
- MyCommand1.Fill(ds,"Schedule1");
- MyDataGrid1.DataSource=ds.Tables["Schedule1"].DefaultView;
- MyDataGrid1.DataBind();
- if(ds.Tables["Schedule1"].Rows.Count<=0)
- MyDataGrid1.Visible=false;
- if(ds.Tables["Schedule1"].Rows.Count>0)
- DIV3.InnerHtml ="未完成的日程计划:"+ds.Tables["Schedule1"].Rows.Count+"项!";
- MyConnection.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
- }
- }