|
Introduction
ChescoWeb servers support active server pages, or ASP. ASP is a
powerful tool for making dynamic web pages. Unlike an HTML page,
an ASP is a page that is created with a script on the server when
it is requested by an visitor.
Some samples of what can you do with ASP
Retrieve data from a file or database
to be displayed on a web page.
Change content based on the time or
date.
Change the content based on user
input.
Redirect a user to different pages
based on their input. This function might be used in a log-in
function.
Example
The following code was used to
display the time
Time:
9/6/2008 10:54:30 PM
HTML Code:
Time: <%=FormatDateTime(Now())%>
More sources of information:
|