Task: View Pdf on browser using asp.net.
Description: Here I show how we can view the pdf file on browser using asp.net and c#.
Description: Here I show how we can view the pdf file on browser using asp.net and c#.
using
System.Net;
public void viewebook(string
pdf_filepath)
{
string
FilePath = Server.MapPath(pdf_filepath);
WebClient
User = new WebClient();
Byte[]
FileBuffer = User.DownloadData(FilePath);
if
(FileBuffer != null)
{
Response.ContentType = "application/pdf";
Response.AddHeader("content-length",
FileBuffer.Length.ToString());
Response.BinaryWrite(FileBuffer);
}
}
No comments:
Post a Comment