Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

Q5801 Is ASP a language?

irt.org | Knowledge Base | ASP | Q5801 [ previous next ]

Q5801 Is ASP a language?

ASP is not a language like VBScript or JavaScript - it is a hosting environment that extends the normal capabilities of a web server and exposes objects for use in web programming. It is accessed by either VBScript (it's default) or JavaScript, and in fact many of the functions you use client-side with these languages can be cut- and-pasted into an ASP page.

ASP's coding, regardless of the langauge you choose, is all ascii text and resides right along side normal HTML and is delimited by <% and %>. Example:

<html>
<head>
</head>
<body>

<%
' Here is some output:
response.write Now() ' writes the current date and time.

%>

</body>
</html>

Feedback on 'Q5801 Is ASP a language?'


Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 30th March 2008. Maintained by: Martin Webb
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2008 irt.org, All Rights Reserved.