在Samsung s4 Mobile Browser中打开PDF

时间:2015-05-08 07:10:53

标签: android asp.net pdf

我正在尝试在samsung s4移动浏览器中显示pdf,但它正在下载。

这是我的代码

response.Clear();
response.Buffer = true;
response.ContentType = "application/pdf";
response.OutputStream.Write(output.ToArray(), 0, output.ToArray().Length);
response.OutputStream.Flush();
response.OutputStream.Close();
output.Close();

在桌面浏览器中,它工作正常,output我正确。

有没有办法在三星s4 Mobile中显示pdf?

0 个答案:

没有答案