Search Support
contact us

Let Us Make it Easy for You. Call 1-877-898-3290 for MyTime Support™. Learn More

How To Get Started With ASP

Article Rating: 1 / 5 Votes: 10

ASP (Active Server Page) are components that allow web developers to create server-side scripted templates that generate dynamic, interactive Web server applications. ASP can only be used on the Windows based platform.

By embedding special programmatic codes (ASP) in standard HTML pages, a visitor can access data in a database, interact with page objects such as Active-X or Java components, or create other types of dynamic output.

The HTML output by an Active Server Page is completely browser independent which means that it can be read equally well by Microsoft Explorer, Netscape Navigator, or most other browsers.

A simple ASP script looks like this:

<html>

<head>

<title>asp page</title>

</head>

<body>

<p>

The time here is <%= now %>

Your browser is <% = request.servervariables("http_user_agent") %>

</body></html>

The output for this is:

The time here is <current time>

Your browser is <type of browser>