compile error

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi everyon

Could someone please tell me what could be causing this compile error on my .aspx page

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 'MSXML2.DOMDocument40' is not defined

Source Error

Line 13:
Line 14: 'Create MSXML 4.0 DOMDocument instanc
Line 15: Dim objXMLDoc As New MSXML2.DOMDocument4
Line 16:
Line 17:
 
* "=?Utf-8?B?bWI=?= said:
Could someone please tell me what could be causing this compile error on my .aspx page?


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 'MSXML2.DOMDocument40' is not defined.

Source Error:

Line 13:
Line 14: 'Create MSXML 4.0 DOMDocument instance
Line 15: Dim objXMLDoc As New MSXML2.DOMDocument40

I am not familiar with ASP.NET, but I assume a reference to MSXML is
missing...
 
Could someone please tell me what could be causing this compile error on my .aspx page?


Probably the .dll is not referenced.

Instead of using that, you might consider using the classes in the
System.Xml namespace.
 
Back
Top