Your
First ASP Script
Before we get into the meat and
potatoes of ASP programming let's
just run a very simple ASP script
to check that your IIS
installation and ASP are working
properly. Open up a text editor
and type the following ASP Code
and save the file as "firstscript.asp".
firstscript.asp ASP Code:
<%
Response.Write("Hello Me")
%> |
Be sure to save this file to
the directory "codetellerASP" as
was mentioned in the previous
lesson, Running
ASP.
Launch Internet Explorer and
type the following into the
address bar:
http://localhost/codetellerASP/firstscript.asp
If you see the following...
Internet Explorer Display:
|
|
|
|