Link to home
Start Free TrialLog in
Avatar of koossa
koossa

asked on

ASP.net component not defined

I try to test a trial version of an html to pdf component in asp.net.
Everything compiles and uploads without a problem, but when I tried to execute the webpage I get an error message
Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. 

Compiler Error Message: BC30002: Type 'DuoDimension.HtmlToPdf' is not defined.

Source Error:


Line 4:      Dim MyByteArray As Byte()
Line 5:      Dim conv As New DuoDimension.HtmlToPdf()
Line 6:      conv.OpenHTML(file_html)
Line 7:      MyByteArray = conv.SavePDF()

Source File: ...\Default.aspx    Line: 5 

Open in new window

Avatar of Obadiah Christopher
Obadiah Christopher
Flag of India image

Make sure you have added a reference of dll that is required for using DuoDimension
Avatar of koossa
koossa

ASKER

Yes, I do have.
When I go to Project, properties and to References it is in the list.
There is no errors when I build it, only when I execute the page on the server.
ASKER CERTIFIED SOLUTION
Avatar of Kishan Zunjare
Kishan Zunjare
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of koossa

ASKER

thx