Amazon.com: PC Books || Educational Software || Magazines
Amazon: Books-CA || Software-CA || Books-UK || Software-UK

HTML | Javascript | ASP | PHP | VBScript | SQL | Hardware | PC FAQ| WinXP|

Learn to Build, Upgrade, or Repair your Computer Ebook + PC Safety 101 kwwebservice.com Reasonably priced web development & hosting
ASP Basics
Introduction
Variables & Arrays
Sub & Functions
If Statements
Case Statements
Loop Statements
Date Objects
Form Processing
Text File Objects
Database Access
Adding Record
Updating Record
Deleting Record
Virtual Includes
Cookies
Server Variables
Creating Login Page
E-mail
ASP Books @
CA Amazon
UK Amazon
US Amazon

  :: Home
PC Topics
  :: Build A PC
  :: Windows XP
  :: PC Help
Tutorials
  :: HTML
  :: JavaScript
  :: ASP
  :: PHP
  :: VBScript
  :: SQL
Miscellaneous
  :: Code/Scripts
  :: Forum
  :: Links
  :: Contact us
  :: Tell A Friend
  :: In Somali
  ::
Web Articles
  Top Web Hosting
Reviews
  Processing
Online Card Payment Guide
  Domain name
registration & buying guide
  Getting
a website online guide
  Search Engine
submission & optimization tips
Netfirms Web Hosting
Free trial
Quality business correspondence.
Yahoo! Search Marketing

What is ASP?

ASP is acronym for Active Server Page.   It’s Server side script language developed by Microsoft.   When ASP file is request by the browser, the browser does not send the page back to the client browser instead its content is interpreted & processed by the server.  ASP is also script language that you combine with HTML document if your server supports ASP.  The default language is VBScript.  However, you can specify to use JavaScript or perlScript.   If you are building E-commerce page, ASP is your ideal language or one of the languages on your choice list.

Tools

In order to build ASP pages on your PC, first you need to install PWS [Microsoft Personal Web Server] or IIS [Internet Information Server]. For Windows XP Pro edition, you can install IIS from Windows Component in the Add/Remove section. Windows XP Professional CD might be required.   You can download PWS from Microsoft web site: here .   You can also learn how to set up here.  
Otherwise you need host a that provides ASP server. Here is how to write hello world program in ASP:
<html>
<head>
<title>hello world program</title>
</head>
<body>
   <% Response.write("Hello World") %>
</body>
</html>

This program declares a variable and writes it:
<html>
<body>
<%
   dim h
   h="Hello World"
   response.write("Say: " & h)
%>
</body>
</html>

This program writes the current time:
<html>
<body>
It’s now <%=Time()%>
</body>
</html>

Variables & Arrays
Listed @ ConsumerVote.com - The Consumer Rated Web Directory
PC Articles
  Computer Safety
prevent viruses & Spyware