Is there a web project template for developing an ASP .NET web application using C++ /CLI as the code behind? I have begun using C++ /CLI for my windows forms applications and web services, but I would like to be able to start a web project the same way I do in C#. If this does not exist, are there plans to put one together in the future?
If you need to access C++/CLI code in ASP.NET, I suggest putting that C++/CLI code into a class library, and using ASP.NET C# to delegate into that class library.
If you need to access C++/CLI code in ASP.NET, I suggest putting that C++/CLI code into a class library, and using ASP.NET C# to delegate into that class library.