A Ctive S Erver P Age ASP
A Ctive S Erver P Age ASP
ASP
ASP
Active Server Page (ASP) is a technology that enables
you to make dynamic and interactive pages.
Ex.
<html>
<head>
<title> New page 1 </title>
</head>
<body>
<%......................%>
<h2> Hello
<%...........................%>
</body>
</html>
Write output to the browser
Ex.
<html>
<body>
<% response.write(“Hello World”) %>
</body>
</html>
Write output to the browser
There is also a shorthand method for the
response.write command
The following example also sends the text
Hello World to the browser
<html>
<body>
<%= “Hello World” %>
</body>
</html>
Note That:
You can use several scripting language in ASP.
However, the default scripting language is
VBScript. Just insert the :
<%@ language = “language” %>
above the <html> tag in order to using another
script language than default.