开发者

How to use itextsharp in my classic asp?

开发者 https://www.devze.com 2023-01-04 08:00 出处:网络
In my ASP web application开发者_StackOverflow, i need to convert my report as a PDF file. In my previous ASP.net application i have done it by using \"itextsharp\". Can anyone guide me how to use itex

In my ASP web application开发者_StackOverflow, i need to convert my report as a PDF file. In my previous ASP.net application i have done it by using "itextsharp". Can anyone guide me how to use itextsharp to my Classic ASP application?


In order to call a .NET class from classic ASP, it needs to be registered for COM interop. I don't believe iTextSharp supports that by default, but you could create a wrapper class that interacts with iTextSharp, and register that class for COM interop.

Creating classes in .NET that register themselves for COM interop is relatively straight-forward. Simply make sure the assembly is strong-named (i.e. that you sign it - on the project properties "Signing" tab, check the "Sign the assembly" checkbox and provide a strong name key file [or generate a new one]) and that you have the "Register for COM interop" checkbox checked on the "Build" page of the project properties.

0

精彩评论

暂无评论...
验证码 换一张
取 消