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") %>
Launch Internet Explorer and type the following into the address bar:
- http://localhost/tizagASP/firstscript.asp
Internet Explorer Display:
Hello Me
...then you've got all the file saving and running mumbo jumbo
figured out and you can start focusing on learning ASP! Now let's
continue!
0 comments:
Post a Comment