ASP Write() Method
The ASP Write() Method is used to display a string as a output on the webpage. It is a predefined method of the Reference type object.
Syntax:
Response.Write variant
Parameter Values: This method contains the value j.e variant which represents the specified string that you want to display as a Output.
Return Values: This method does not return any Values.
Example: Below code illustrates the ASP Write() Method
<% response.write("< h1 >ASP Write() Method</ h2 >") response.write("< p >Hello GeeksForGeeks)</ p >") %> |
chevron_right
filter_none
Example 2:
<% name="GeeksForGeeks" Response.Write(name) %> |
chevron_right
filter_none