Install Windows Installer (WindowsInstaller-KB884016-v2-x86)
Install .NET Framework 2.0
Install the latest version of Aspose.Words (4.4.3.0)
Create Sample application.
All works fine.
Create wrapper class
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.
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 = "<br>"
Dim element
For Each element in methods.GetFieldNames(doc)
Response.Write(element + BR)
Next