Hi
I used the
following steps.
1. Install
win2000 Professional SP4
2. Install
IIS
3. Install Windows
Installer (WindowsInstaller-KB884016-v2-x86)
4. Install
.NET Framework 2.0
5. Install
the latest version of Aspose.Words (4.4.3.0)
6. Create
Sample application. See the following manual.
Utilize_Aspose_Words_from_COM_Clients_ASP_VB_VBScript.html
All works
fine.
7. Create
wrapper class using the following manual.
How_to_create_a_wrapper_to_assist_in_calling_Aspose_Words_methods_from_classic_ASP
Also make assembly
visible for COM (On the View menu, click Solution
Explorer..In Solution Explorer, right-click the project that you want
to build for COM interop, and then click Properties. Click Configuration
Properties, and then click the Application node. Click
to button the Assembly Information. Click
to select the Make assembly COM-visible
check box)
Also you
should set strong name for assemble.
8. Register
assembly
cd
C:\WINNT\Microsoft.NET\Framework\v2.0.50727
regasm
C:\AsposeComWrapper.dll /codebase
Create
sample page as the following.
Dim helper
Set helper = CreateObject("Aspose.Words.ComHelper")
Dim doc
Set doc = helper.Open("C:\Temp\in.doc")
Dim methods
Set methods = CreateObject("AsposeComWrapper.Methods")
Dim BR
BR = "
"
Dim element
For Each element in
methods.GetFieldNames(doc)
Response.Write(element
+ BR)
Next
And all
works fine on my side.
Hope this
helps.
Best
regards.