我在使用 SQL 服务器2005 运行一个 asp.net 4 / c# 网站, 并想要将 SQL 服务器内部的列值写入已包含文件内容的 PDF 文件( 我要将您从我网站页面上登录的 PDF 凭单个人化) 。
是否有一个容易看的辅导课 或这是一个更大的工作吗?
我在使用 SQL 服务器2005 运行一个 asp.net 4 / c# 网站, 并想要将 SQL 服务器内部的列值写入已包含文件内容的 PDF 文件( 我要将您从我网站页面上登录的 PDF 凭单个人化) 。
是否有一个容易看的辅导课 或这是一个更大的工作吗?
这里有两个部分:
你可以看""http://bittmiracle.com/blog/write-data-from-a-database-to-pdf" rel="nofollow" 这篇文章 详细描述了两个部分。
我想你们有几种选择
For example, you can create a PDF document based on a template using iTextSharp. In that case, the template is the existing voucher you mention. You d have to replace the information inside it, by identifying the fields, or something like that. Something similar could also be accomplished using PDFSharp.
使用 iTextSharp 使用其许可协议时要特别注意, 因为其 AGPL, 这意味着您的软件必须是 GPL/ AGPL 。
现在,如果你想避免与 PDF 对象和 API 进行互动, 您还有另外一种选择。 即创建 RDLC 本地报告, 并 < a href=" http://forums. asp. net/ t/ 1556522. aspx/2/ 10" rel = “ nofollow” 直接将它从您的编码后 < / a > 中导出到 PDF 。 在这种情况下, 它不会基于已有的凭单, 它会从零开始产生 。
In my webpages I have references to js and images as such: "../../Content/Images/"Filename" In my code if I reference a file as above, it doesnt work so i have to write: "c:/miscfiles/"filename" 1-...
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. ...
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 ...
I m looking for best practices here. Sorry. I know it s subjective, but there are a lot of smart people here, so there ought to be some "very good" ways of doing this. I have a custom object called ...
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 ...
i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...
For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?
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!