日期:2010-03-30 浏览次数:20435 次
以下是Simple.cs: Imports System Imports System.Web Imports System.Web.UI Namespace SimpleControlSamples public class SimpleCSharp { protected override void Render(HtmlTextWriter Output) { Response.Write("<H2>欢迎来到Asp.net源码下载专业站<H2>"); } } |
引用文件Simple.aspx:
以下是Simple.aspx: <%@ Register TagPrefix="SimpleControlSamples" Namespace="SimpleControlSamples" Assembly="SimpleControlSamplesCSharp" %> <html> <body> <form method="POST" action="Simple.aspx" runat=server> <SimpleControlSamples:SimpleCSharp id="MyControl" runat=server/> </form> </body> </html> |