Sunday 2 October 2011

ASP.NET Hello World Example

// in the code behind using C#
protected void Page_Load(object sender, EventArgs e)
{
  Response.Write("Hello, world!");
}

No comments:

Post a Comment