Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q5805 How do I get ASP to output text to a web page?

You are here: irt.org | FAQ | ASP | Q5805 [ previous next ]

Use the response object's write method:

<%

' WRITE STATIC TEXT
response.write "Hi my name is…" & "<br>"

' OUTPUT THE RESULT OF A FUNCTION
response.write isArray(myArray)

%>

©2018 Martin Webb