Legacy ASP & .Net

  • Thread starter Thread starter Jim Douglas
  • Start date Start date
J

Jim Douglas

I have (3) legacy ASP applications where I have been tasked with
implementing a SpellChecker in, the catch is that the SpellChecker has to be
done in .NET. I have some ideas about how to do it but wanted to see what
others with more experience with .NET would do.


Thanks!
 
You'll have to register the .NET assembly with Windows Component Services to
implement a Com Callable Wrapper (CCW) that can be invoked from your Classic
ASP applications. Before you can register the .NET assembly, you'll also
need to give it a strong name with the sn.exe tool.

Check out COM InterOp topics in help for details.
 
Back
Top