我正在尝试从下拉列表的新浏览器选项卡中显示一些pdf。我使用SqlDataReader从数据库中检索数据,但得到了数据。 我按一下按钮后,它只会显示pdf。 如何强制Kode回发或显示新标签页?
我已经尝试了很多解决方案,但是我总是以这样的方式告终。而且它不起作用。
```
Context.Response.Buffer = true;
Context.Response.Charset = "";
Context.Response.Cache.SetCacheability(HttpCacheability.NoCache);
Context.Response.ContentType = "application/pdf";
Context.Response.BinaryWrite(bytes);
Context.Response.Flush();
Context.Response.End();
```