protected void Page_Load(object sender, EventArgs e) { int IDd = (int)Session["ID"]; DataTable dtTable = Session["download"] as DataTable; if (IDd != 0) { string test = dtTable.Rows[IDd - 1]["Name"].ToString(); if (dtTable.Rows[IDd - 1]["DownloadFile"] != DBNull.Value) { byte[] file = (byte[])dtTable.Rows[IDd - 1]["DownloadFile"]; Response.Clear(); Response.Buffer = true; Response.Charset = ""; Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.ContentType = "application / pdf"; Response.AppendHeader("Content-Disposition", "attachment; filename=" + test + ".pdf"); Response.BinaryWrite(file); Response.Flush(); Response.End(); } else { ScriptManager.RegisterStartupScript(this, this.GetType(), "Redit", "alert('ไม่มีเอกสารนี้'); window.location='" + Request.ApplicationPath + "applicationform.aspx';", true); } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง