C++ for Web Development

C

Carl Daniel [VC++ MVP]

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
 
R

Roman

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.
 
C

Carl Daniel [VC++ MVP]

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
 
G

Guest

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top