ASP.NET Output

To display messages or output on the website in asp.net, they keyword is Response.Write Response.write can also be used include HTML tags in asp.net. Example is below
<%
            Response.Write("This is asp.net message")
            Response.Write("<BR>")
            Response.Write("<B>This is second line</B>")

%>