vote up 3 vote down star
1

I was curious why C++ isn't offered as a code-behind language for ASP.NET applications?

flag

68% accept rate

4 Answers

vote up 2 vote down check

If you are interested, here's some interesting articles about how you could use managed C++ as your code-behind:

link|flag
vote up 0 vote down

I do not have the answer. However for hardcore c++ guys who want to develop ASP.NET apps in C++, you can always build your core logic etc in a separate project/assembly. You can't run away from VB.NET or C# totally though.

link|flag
vote up 3 vote down

C++ is supported, but as another answer says - most C++ apps require a higher level trust mode that ASP.NET cannot support. You can, however, use C++ to create assemblies and web components that can then be consumed by ASP.NET & IIS.

There is a project to include C++ as a code-behind language.

Article on creating consumable assemblies

link|flag
vote up 4 vote down

Most ASP.NET applications run in limited trust modes. And C++ generally compiles into something that requires higher trust levels.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.