using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; using System.Net; public partial class Team : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { // string pdfPath = Server.MapPath("~/App_Data/Shahid_Resume.pdf"); // WebClient client = new WebClient(); // Byte[] buffer = client.DownloadData(pdfPath); // Response.ContentType = "application/pdf"; // Response.AddHeader("content-length", buffer.Length.ToString()); // Response.BinaryWrite(buffer); } protected void LinkButton1_Click(object sender, EventArgs e) { string pdfPath = Server.MapPath("~/App_Data/Shahid_Resume.pdf"); WebClient client = new WebClient(); Byte[] buffer = client.DownloadData(pdfPath); Response.ContentType = "application/pdf"; Response.AddHeader("content-length", buffer.Length.ToString()); Response.BinaryWrite(buffer); } }