ASP: Looping Statements
ASP performs several types of repetitive operations, called “looping”. Loops are set of instructions used to repeat the same block…
The easy way to know
ASP performs several types of repetitive operations, called “looping”. Loops are set of instructions used to repeat the same block…
Last updated: August 25, 2026. Classic ASP commonly uses VBScript’s If…Then…Else and Select Case statements to choose which code runs.…
Declaring variables in ASP is simple, especially since all variables are of Variant type. What does this mean to you? You…
JavaScript What is JavaScript? What can JavaScript do? The first script Variables Arrays Functions Loops Conditional Statements Form Validation How to…
Sometimes it is necessary to set the focus to the first available form control. The problem is that complex web…
Last updated: August 25, 2026. Pressing Enter in a form can trigger its default submit button. Keep that behavior for…
Any interactive web site has form input – a place where the users input different kind of information. This data…
Sometimes when you write code, you want to perform different actions for different decisions. You can use conditional statements in your…
JavaScript performs several types of repetitive operations, called “looping”. Loops are set of instructions used to repeat the same block…
Sometimes instead of just adding your javascript to the page and having the browser perform the tasks as soon as…