Hi All,
I am writting the the pdf data to the browser by using following code in vb.Net application
Response.Clear( )
Response.Conten tType = "Applicatio n/pdf"
Response.Binary Write(buffer)
Response.End()
Above code worked fine on Firefox i.e pdf file gets shown on the browser properly.
But the same code is not working on IE 6/7. I am getting following error when I try to use the pdf application on IE.
"Internet Explorer cannot download PDF.aspx from localhost.
Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later."
I have also installed the acrobat reader on the same m/c but still it showing me above error.
Can anybody have the solution to resolve this issue?
Regards
Amol Lokhande
I am writting the the pdf data to the browser by using following code in vb.Net application
Response.Clear( )
Response.Conten tType = "Applicatio n/pdf"
Response.Binary Write(buffer)
Response.End()
Above code worked fine on Firefox i.e pdf file gets shown on the browser properly.
But the same code is not working on IE 6/7. I am getting following error when I try to use the pdf application on IE.
"Internet Explorer cannot download PDF.aspx from localhost.
Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later."
I have also installed the acrobat reader on the same m/c but still it showing me above error.
Can anybody have the solution to resolve this issue?
Regards
Amol Lokhande
Comment