Rank: Member Groups: Member
Joined: 3/19/2013 Posts: 10
|
Hi,
I downloaded and installed eo.pdf.dll and eo.web.dll I use delphi prism, asp.net, framework 4. I start a new solution, add references to eo.web.dll and eo.pdf.dll. I also copy eo.pdf.dll in my bin folder. As said in your documentation I would simply have to drag the aspxtopdf component onto my form. However, it is not in my toolbox. What could I be doing wrong?
thank you, Mieke
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Hi, You can just copy it directly to your page. First add this to the top of your page:
Code: HTML/ASPX
<%@ Register TagPrefix="eo" NameSpace="EO.Web" Assembly="EO.Web" %>
Then add the following code into your page:
Code: HTML/ASPX
<eo:ASPXToPDF runat="server" ID="ASPXToPDF1"></eo:ASPXToPDF>
You will be all set. Thanks!
|
Rank: Member Groups: Member
Joined: 3/19/2013 Posts: 10
|
Thanks, it works!
Mieke
|