1
Answer

Is it possible to create an object in C# and access it in an ASP page using Server.CreateObject?

EJR

EJR

19y
1.7k
1
I have seen all over about how C# can be used to expose legacy COM objects, however I have yet to see anything about how to access an object written in C# through an ASP Server.Createobject command. Is it possible to write an object in C# that can be accessed in a regular ASP page with Server.CreateObject?
Answers (1)
0
Binu Subi
NA 68 0 19y
Register the assembly using regasm.exe for using it from a COM client

Since ASP dont have any object browser, launch VB, using VB's object browser to see the exposed class names, methods and properties and use it in ASP

Cheers!