HelloControl
Hello world ASP.NET server control.using System;
using System.Web;
using System.Web.UI;
namespace Website3
{
[ToolboxData("<{0}:HelloControl runat=\"server\" />")]
public class HelloControl : Control
{
protected override void Render(HtmlTextWriter writer)
{
writer.Write("Hello World!");
}
}
}
zobrazení: