all groups > dotnet clr > april 2007 >
You're in the

dotnet clr

group:

Web develop


Web develop WELCOME ###
4/15/2007 12:34:51 AM
dotnet clr:
Hi all
How can I do "web site" or "Web developer" by using C++. I tried using
Visual studio 2005. I could not do it because C++ language not available by
using ASP.NET.
How can I overcome this problem?
Than you.
======================

Re: Web develop ChristiG
4/22/2007 12:00:00 AM
Web sites are made in a language called HTML
Your problem has nothing to do with C++ which is something else.
To make a website you must learn HTML or use an HTML editor like Macromedia
Dreaweaver or Microsoft Frontpage etc.
Your question denotes 0 knowledge as a programer therefore before posting
stupid questions I suggest you to take a book and read something :)


[quoted text, click to view]

Re: Web develop Ben Voigt
5/16/2007 9:11:22 AM

[quoted text, click to view]

ASP.NET is a web development environment, where HTML code and program logic
are intermingled. ASP.NET supports embedding C# or Visual Basic code inside
..aspx pages and for code-behind, but does not support C++. The reason for
this is probably that C++ is far more complex to parse than either C# or
Visual Basic.

However, an ASP.NET page can reference classes from a .NET assembly written
in any language. Therefore, the canonical way to use C++ in ASP.NET is:
compile business logic in a C++/CLI managed class library. Register that
assembly in the global assembly cache and reference it from a C# web
project. Use C# to stitch the HTML interface to the C++ backend.

And to ChristiG -- Your arrogant response demonstrates a lack of
interpersonal skills. Calling someone's question stupid is inappropriate
for this list, and it is especially ironic when it is a valid question above
your level of expertise.

[quoted text, click to view]

AddThis Social Bookmark Button