Download.aspx.cs
上传用户:autodoor
上传日期:2022-08-04
资源大小:9973k
文件大小:1k
- using System;
- using System.Data.SqlClient;
- namespace qminoa.Webs
- {
- public class Download : qminoa.Webs.PageBase
- {
- private void Page_Load(object sender, System.EventArgs e)
- {
- if(!this.IsPostBack)
- {
- this.PageBegin("文档管理",true);
- SqlDataReader dr;
- int FileIndex=Convert.ToInt32(Request.QueryString["fid"],10);
- string con=System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"];
- SqlConnection conn=new SqlConnection(con);
- SqlCommand command = new SqlCommand("Select FPath from fmfilecont where fileId=@fileId",conn);
- command.Parameters.Add("@fileId",FileIndex);
- conn.Open();
- dr=command.ExecuteReader();
- dr.Read();
- Response.ClearHeaders();
- string path=dr["FPath"].ToString();
- string[] http=path.Split('\');
- string realpath=http[1]+"/"+http[2];
- Response.Redirect(realpath);
- dr.Close();
- conn.Close();
- }
- }
- #region Web Form Designer generated code
- 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
- }
- }