Introduction To Active Server Page "ASP"
Before you proceed, you should be familiar with html and javascript
Asp stands for Active Server Page. it is based on Microsoft technology, and it
runs on IIS, so make sure to insall IIS, which can be found at the control
panel => add/remove programs =>add/remove windows componnents =>
select " Internet Information Services IIS. and then install. and you are set
to go!
Here are some Information about Active Server Page "ASP"
-
ASP: Active Server Page
-
ASP is a program that runs within IIS
-
IIS is an abbreviation for Internet Information Services
-
IIS comes as a free component with Windows 2000, and XP
-
You can use notepad as an editor for your ASP page.
Example: Hello World
| HelloWorld.asp |
<html>
<head>
<title></title>
</head>
<body>
<%
response.write("Hello World!")
%>
</body>
</html>
|
|