Hello World!


This simple program contains just one line of code which we can see below. Enter this in the code-behind page inside the Page_Load() event handler.

Response.Write("Hello World");

This simple program contains just one line of code which we can see below. Enter this in the code-behind page inside the Page_Load() event handler.

    protectedvoid Page_Load(object sender, EventArgs e) 
    { 
        Response.Write("Hello World"); 
    }