ASP Response.Write() - Response Object Writes a character to an HTTP response output stream.
ShotDev Focus:
- The character to write to the HTTP output stream.
Example
asp_response_write.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Response.write("Welcome To www.ShotDev.Com<br>") Dim strName strName = "Weerachai Nukitram" Response.write(strName&"<br>") Response.write("<b>"&strName&"</b>") %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_response_write.asp
Screenshot
.
.
.