English 中文(简体)
如何为 Internet Explorer 生成.pdf 下载?
原标题:How to generate download .pdf for Internet Explorer?

我在一个网站上工作, 用户在网站上输入一个名字, 然后按下按钮, 提示服务器根据所提供的信息创建 pdf 文件, 然后将文件发送给用户 。

我在笔记本电脑上测试网站,没有IIS

我需要的 pdf 成为 Hebrew, 无法在 Hebrew 上找到带有 vb 的 pdfwrite ; 相反, 我创建了一个 MS Word 文档, 然后用下面的代码将其转换为 pdf 。

这对Firefox、Chrome和Safari都很管用,但对于互联网探索者来说,下载前的页面断开。当创建单词语句被执行时,它断开。

有人能帮我吗?

      Protected Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles      Button1.Click
      Dim strname As String
      strname = TextBox1.Text.Trim

      Dim oword As New word.Application
      Dim odoc As New word.Document
      oword = CreateObject("word.Application")

      odoc = oword.Documents.Add("C:documents	amp.dotx")

      odoc.Bookmarks.Item("name1").Range.Text = strname
      odoc.Bookmarks.Item("name2").Range.Text = strname
      odoc.Bookmarks.Item("name3").Range.Text = strname
      odoc.Bookmarks.Item("name4").Range.Text = strname
      odoc.Bookmarks.Item("name5").Range.Text = strname
      odoc.Bookmarks.Item("name6").Range.Text = strname

      odoc.ExportAsFixedFormat(Server.MapPath("
eshume.pdf"), 17)
      Response.Redirect(Server.MapPath("
eshume.pdf"))
      end sub
问题回答

结果发现问题不在代码里 我的机器出了问题 我用另一台电脑测试了它 效果很好

替换

Response.Redirect(Server.MapPath("
eshume.pdf"))

 Response.Redirect("neshume.pdf")

您无法重新定向到整个路径( 也许它被 ff 所接受, 因为它在同一台电脑上运行 ) 。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签