PDF在VB网络中创建 [英] PDF createing in VB net

查看:66
本文介绍了PDF在VB网络中创建的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述





我正在开发Web应用程序。

我有一个带有表格和内容的html页面。 />
现在我的查询是如何转换页面内容以生成PDF文件。

客户需要(用户)是否需要在机器上安装任何东西



请帮助我

Hi,

I am working on Web application.
I have one html page with tables and content on it.
now my query is how to convert page content to generate PDF file .
Is client need (users) need any thing to install on machine

Pls help me

推荐答案

.Net框架中没有内置任何东西,所以基本上你最终会编写自己的第三个派对工具。



你可以查看这个



VB.NET或CS.NET中的HTML到PDF [ ^ ]
There isn't anything built into the .Net framework, so basically you'll end up writing your own third party tool.

you can check this

HTML to PDF in VB.NET or CS.NET[^]


访问这里..



创建和操作PDF文档 - 100%.NE T [ ^ ]
visit here..

Create and manipulate PDF documents - 100% .NET[^]


我希望以下代码对您有所帮助,我正在从RDLC报告创建PDF文件,我的代码如下......



I hope the following code may be help to you, i am creating the PDF file from RDLC report, my code is below...

Dim byteViewer As Byte() = ReportViewer1.LocalReport.Render("PDF")
Dim newFile As New FileStream("C:\Users\SathishKumar\Desktop\♫ ".pdf", FileMode.Create) 'Pdf save location.
            newFile.Write(byteViewer, 0, byteViewer.Length)
            newFile.Close()


这篇关于PDF在VB网络中创建的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆