FileDetails.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>
- /// FileDetails 的摘要说明。
- /// </summary>
- public class FileDetails : System.Web.UI.Page
- {
- protected System.Web.UI.WebControls.Label Title;
- protected System.Web.UI.WebControls.Label Sender;
- protected System.Web.UI.WebControls.Label Date;
- protected System.Web.UI.WebControls.Label FileKind;
- protected System.Web.UI.WebControls.Label Writer;
- protected System.Web.UI.HtmlControls.HtmlGenericControl FileContents;
- protected System.Web.UI.WebControls.Label State;
- protected System.Data.SqlClient.SqlConnection MyConnection;
- protected System.Web.UI.WebControls.Label SystemName;
- protected System.Web.UI.WebControls.Label OrganizationName;
- protected System.Web.UI.HtmlControls.HtmlInputButton Button1;
- public string FileID,st,PID;
- public int DID;
- private void Page_Load(object sender, System.EventArgs e)
- {
- MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
- if(Request.Params["FileID"]!=null)
- {
- DID = Int32.Parse(Request.Params["FileID"]);
- Session["FileID"] = Request.Params["FileID"].ToString();
- SqlCommand MyCommand00 = new SqlCommand("PersonID",MyConnection);
- MyCommand00.CommandType = CommandType.StoredProcedure;
- MyCommand00.Parameters.Add(new SqlParameter("@Name", SqlDbType.NVarChar, 50));
- MyCommand00.Parameters["@Name"].Value = User.Identity.Name;
- MyConnection.Open();
- SqlDataReader myReader00 = MyCommand00.ExecuteReader();
- myReader00.Read();
- PID = myReader00.GetInt32(0).ToString();
- myReader00.Close();
- SqlCommand MyCommand = new SqlCommand("FileContents",MyConnection);
- MyCommand.CommandType = CommandType.StoredProcedure;
- MyCommand.Parameters.Add(new SqlParameter("@FileID", SqlDbType.Int, 4));
- MyCommand.Parameters["@FileID"].Value = Int32.Parse(Request.Params["FileID"]);
- SqlDataReader myReader = MyCommand.ExecuteReader();
- myReader.Read();
- Title.Text = myReader["Title"].ToString();
- Date.Text = DateTime.Parse(myReader["Date"].ToString()).ToString("yy-MM-dd HH:mm");
- Writer.Text = myReader["Writer"].ToString();
- FileKind.Text = myReader["FileKind"].ToString();
- SystemName.Text = myReader["SystemName"].ToString();
- OrganizationName.Text = myReader["OrganizationName"].ToString();
- Sender.Text = myReader["Name"].ToString();
- st = myReader["State"].ToString();
- int sti = st.IndexOf("("+PID+")");
- if(sti<0)
- State.Text="未阅";
- else
- State.Text="已阅";
- myReader.Close();
- MyConnection.Close();
- }
- // 在此处放置用户代码以初始化页面
- }
- #region Web 窗体设计器生成的代码
- override protected void OnInit(EventArgs e)
- {
- //
- // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
- //
- InitializeComponent();
- base.OnInit(e);
- }
- /// <summary>
- /// 设计器支持所需的方法 - 不要使用代码编辑器修改
- /// 此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.Button1.ServerClick += new System.EventHandler(this.Button1_ServerClick);
- this.Load += new System.EventHandler(this.Page_Load);
- }
- #endregion
- private void Button1_ServerClick(object sender, System.EventArgs e)
- {
- string newst;
- if(st.Trim()=="0")
- {
- newst="("+PID+")";
- }
- else
- {
- newst=",("+PID+")";
- }
- MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
- SqlCommand MyCommand2= new SqlCommand("UpdateFileState", MyConnection);
- MyCommand2.CommandType = CommandType.StoredProcedure;
- MyCommand2.Parameters.Add(new SqlParameter("@FileID", SqlDbType.Int, 4));
- MyCommand2.Parameters["@FileID"].Value = DID;
- MyCommand2.Parameters.Add(new SqlParameter("@State", SqlDbType.NVarChar,120));
- MyCommand2.Parameters["@State"].Value =newst;
- if(MyConnection.State.ToString()=="Closed")
- MyConnection.Open();
- MyCommand2.ExecuteNonQuery();
- MyConnection.Close();
- Response.Write("<script>window.close();</"+"script>");
- }
- }
- }