Click here to Skip to main content
15,888,816 members
Articles / Web Development / ASP.NET

ASP.NET with Managed C++

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
19 Aug 2002CPOL2 min read 144.3K   1.2K   21  
Use Managed C++ as your code-behind file for ASP.NET web pages
<%@ Page AutoEventWireup="false" Inherits="HelloWorldMC" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
	<HEAD>
		<title>HelloWorld MC++</title>
	</HEAD>
	<body>
	<form runat=server>
		<asp:Button id="Button1" runat="server" Text="Click Me Please" 
		OnClick="SayHello" Width="172px"></asp:Button>
	</form>
	</body>
</HTML>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions