Wher can I find info or a tutorial to make an asp.net to a com class?
Main Topics
Browse All TopicsI have an asp app there is something I need that can only be dome with asp.net.
Can I call an asp.net script from a regular asp script? The server supports asp.net
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I've never put a COM wrapper on a .NET Assembly, but it can be done. I've done the opposite; used a COM component from .NET.
Before going down that road I would investigate as much as possible to see if there are other ways to accomplish what you need to do. I'm not a big fan of COM so I'd avoid it if at all possible.
Maybe these links will send you in the right direction.
http://msdn.microsoft.com/
http://oreilly.com/catalog
You can do it through AJAX. See link below:
http://encosia.com/2008/05
Business Accounts
Answer for Membership
by: brawneyPosted on 2009-01-03 at 14:06:06ID: 23287277
I don't know how this could be directly done. I guess it depends on exactly what you're trying to do in asp.net and what it would return, etc.
One thought is that you can make the ASP.NET class a COM class, register it on the machine and use it like any other COM component from ASP.
Another thought is to wrap the asp.net functionality in a web service and call the web service from asp.