/home/web-programming/asp/

ASP Response.Write Function

The ASP Response.Write function is used display a string or the contents of a variable on a web page.

Response.Write Function Arguments

String or variable to be displayed

ASP Coding for Response.Write Function

<%

sTxtString = "I am happy!"
Response.Write sTxtString & " Are you?"

%>


Result

I am happy! Are you?