Start Programming in ASP, Part I - Your first ASP program
2873Start Programming in ASP, Part I - Your first ASP programhttp://www.onlineprogrammer.org/articles/Articlea2-6-3.htmlASP is a new scripting technology that comes with Microsoft
IIS web server and enables web programmers to create
powerful web applications and pages. These dynamic pages
are the result of running a code on the server. Server
receives user?s input from browser, runs the script and
creates a web page on the fly and sends it back to browser.
We can use different languages such as vbscript and jscript
with asp scripting method. ASP is now available on Unix
platforms by a third party company ?chili soft?. For Unix
people asp is very similar to PHP scripting.ASP > Tips and Tutorials > Introduction to ASPOct 10, 2006
ASP is a new scripting technology that comes with Microsoft
IIS web server and enables web programmers to create
powerful web applications and pages. These dynamic pages
are the result of running a code on the server. Server
receives user?s input from browser, runs the script and
creates a web page on the fly and sends it back to browser.
We can use different languages such as vbscript and jscript
with asp scripting method. ASP is now available on Unix
platforms by a third party company ?chili soft?. For Unix
people asp is very similar to PHP scripting.
How ASP server presents the programming environment to ASP pages with a number of run-time objects.
Basic properties and methods of run-time objects: request, response, server, application, and session.
The If Then control structure can be used to run a line or block of code within your script when a certain condition is met.
Below are 4 ways to use the If Then control structure.
ASP performs several types of repetitive operations, called "looping". Loops are set of instructions used to repeat the same block of code till a specified condition returns false or true depending on how you need it. To control the loops you can use counter variable that increments or decrements with each repetition of the loop.
The two major groups of loops are For..Next and Do..Loop. The For...Next statements are best used when you want to perform a loop a specific number of times. The Do...Loop statements are best used to perform a loop an undetermined number of times. In addition, you can use the Exit keyword within loop statements.
Joining mailing list will entitle you
to receive occasional emails informing you of news and
updates to the site and any special offers that may be
of interest to you.