C++ for Web Development

  • Thread starter Thread starter Guest
  • Start date Start date
Greg said:
Does C++/CLR have any limitations comapred to VB/C# for web
develpment? --

Yes. C++ is not supported as a code-behind language for ASP.NET.

-cd
 
Carl said:
Yes. C++ is not supported as a code-behind language for ASP.NET.

-cd

You probably meant that C++ can be deployed as code-behind but not as
code-in-page.
 
Roman said:
You probably meant that C++ can be deployed as code-behind but not as
code-in-page.

C++ can't be deployed in any compile-on-the-fly configuration.. C++ can be
used to develop a binary assembly that's used by the pages.

-cd
 
Correct me if I'm wrong Carl, but you were referring to the code-behind that
requires use of partial classes?

Great info Roman.

Bottom-line?
Is code-behind as relates to partial classes a RAD development scenario
issue only?
Am I limited in C++ to the kind of web functionality that I can create?
--
Greg McPherran
www.McPherran.com


Roman said:
Carl said:
Roman said:
Carl Daniel [VC++ MVP] wrote:
Greg wrote:
Does C++/CLR have any limitations comapred to VB/C# for web
develpment? --
Yes. C++ is not supported as a code-behind language for ASP.NET.

-cd

You probably meant that C++ can be deployed as code-behind but not as
code-in-page.

C++ can't be deployed in any compile-on-the-fly configuration..

I totally agree ...
C++ can be
used to develop a binary assembly that's used by the pages.

.... and this technique is called "code-behind", which you said in your
first response is not supported.


http://msdn.microsoft.com/msdnmag/issues/02/08/ASPColumn/

Roman
 
Back
Top