VBScript – Error Handling
There are three types of errors in programming: (a) Syntax Errors, (b) Runtime Errors, and (c) Logical Errors. Syntax errors Syntax errors, also called parsing errors, occur at interpretation time…
There are three types of errors in programming: (a) Syntax Errors, (b) Runtime Errors, and (c) Logical Errors. Syntax errors Syntax errors, also called parsing errors, occur at interpretation time…
Regular Expressions is a sequence of characters that forms a pattern, which is mainly used for search and replace. The purpose of creating a pattern is to match specific strings,…
What is an Object VBScript runtime objects help us to accomplish various tasks. This section will help you understand how to instantiate an object and work with it. Syntax In…
What is a Dialog Box ? VBScript allows the developers to interact with the user effectively. It can be a message box to display a message to a user or…
What is a Function? A function is a group of reusable code which can be called anywhere in your program. This eliminates the need of writing same code over and…
VBScript Date and Time Functions help the developers to convert date and time from one format to another or to express the date or time value in the format that…
What is an Array? We know very well that a variable is a container to store a value. Sometimes, developers are in a position to hold more than one value…
Strings are a sequence of characters, which can consist of alphabets or numbers or special characters or all of them. A variable is said to be a string if it…
Number functions help the developers to handle numbers in an efficient way and also helps them to convert their subtypes. It also helps them to make use of the inbuilt…
What are Cookies? Web Browsers and Servers use HTTP protocol to communicate and HTTP is a stateless protocol. But for a commercial website, it is required to maintain session information…