|
How to write a string on the web page?
by: Itfunda
Product Type: Tips and Tricks (Books)
Technologies: ASP.NET
This how to describes how to write a string on the web page.
To write a string on the web page, Response.Write method can be used.
Code Behind:protected void Page_Load(object sender, EventArgs e) { Response.Write("Hello world !"); }
In the above code snippet, “Hello World” will be written on the browser. Demo Path: /Label-Literal/Default.aspx.
|