Imports System
Imports System.Web
Imports System.Web.UI
Namespace MyCustomControls
Public Class CustomControl1 : Inherits Control
Protected Overrides Sub Render(Output as HtmlTextWriter)
Output.Write(strMessage & " The time is now " &_ DateTime.Now.ToString)
End Sub
End Class
End Namespace
就是上面的了
谢谢