<asp:LinkButton ID="btDownload" runat="server" Text="Download" OnClick="btDownload_Click" />
protected void lnkDownload_Click(object sender, EventArgs e) { string fileName = "NCSR_PEM.xls"; string filePath = Server.MapPath("~\\ncsr\\" + fileName); string attachment = "attachment; filename=" + fileName; Response.ClearContent(); Response.AddHeader("content-disposition", attachment); Response.ContentType = "application/ms-excel"; Response.TransmitFile(filePath); Response.End(); }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง