MessageDetails.aspx.cs
资源名称:OA_at.rar [点击查看]
上传用户:tree100901
上传日期:2007-06-03
资源大小:2295k
文件大小:4k
源码类别:
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>
- /// MessageDetails 的摘要说明。
- /// </summary>
- public class MessageDetails : System.Web.UI.Page
- {
- protected System.Web.UI.WebControls.Label Sender;
- protected System.Web.UI.WebControls.Label Date;
- protected System.Web.UI.HtmlControls.HtmlInputButton back;
- protected System.Web.UI.WebControls.Label Attachment;
- protected System.Web.UI.HtmlControls.HtmlGenericControl Contents;
- protected System.Data.SqlClient.SqlConnection MyConnection;
- private void Page_Load(object sender, System.EventArgs e)
- {
- MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
- if(Request.Params["MessageID"]!=null)
- {
- int MID = Int32.Parse(Request.Params["MessageID"]);
- string PID = "";
- int i;
- SqlCommand MyCommand = new SqlCommand("MessageContents",MyConnection);
- MyCommand.CommandType = CommandType.StoredProcedure;
- MyCommand.Parameters.Add(new SqlParameter("@MessageID", SqlDbType.Int, 4));
- MyCommand.Parameters["@MessageID"].Value = Int32.Parse(Request.Params["MessageID"]);
- MyConnection.Open();
- SqlDataReader myReader = MyCommand.ExecuteReader();
- myReader.Read();
- PID = myReader["PersonID"].ToString();
- Contents.InnerHtml = myReader["Contents"].ToString();
- Date.Text = myReader["Date"].ToString();
- if(myReader["Attachment"].ToString().Trim()!="")
- Attachment.Text="附件:<a href=javascript:window.open('MessageAttachment\\"+myReader["Attachment"].ToString()+"','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,revisable=no,left=100,top=0');window.close();>"+myReader["Attachment"].ToString()+"</a>";
- else
- Attachment.Text="附件:无";
- i= Int32.Parse(myReader["State"].ToString());
- i++;
- myReader.Close();
- SqlCommand MyCommand0 = new SqlCommand("PersonName",MyConnection);
- MyCommand0.CommandType = CommandType.StoredProcedure;
- MyCommand0.Parameters.Add(new SqlParameter("@PersonID", SqlDbType.Int, 4));
- MyCommand0.Parameters["@PersonID"].Value = Int32.Parse(PID);
- SqlDataReader myReader0 = MyCommand0.ExecuteReader();
- myReader0.Read();
- Sender.Text = myReader0["Name"].ToString();
- if(myReader0["Name"].ToString()==User.Identity.Name)
- back.Visible = false;
- myReader0.Close();
- SqlCommand MyCommand2= new SqlCommand("UpdateMessageState", MyConnection);
- MyCommand2.CommandType = CommandType.StoredProcedure;
- MyCommand2.Parameters.Add(new SqlParameter("@MessageID", SqlDbType.Int, 4));
- MyCommand2.Parameters["@MessageID"].Value = MID;
- MyCommand2.Parameters.Add(new SqlParameter("@State", SqlDbType.Int, 4));
- MyCommand2.Parameters["@State"].Value = i.ToString();
- MyCommand2.ExecuteNonQuery();
- 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
- }
- }