This tutorial will teach you all of the basic string functions available in ASP using VBScript. I will keep things concise as possible. The following is a list of the functions and an example of each.
ASP SPLIT, REPLACE and JOIN String Functions ASP / Miscellaneous
The various string functions can be used interchangeably often. We will write the same script using SPLIT, REPLACE and JOIN to demonstrate all 3 functions and how they often are used for similar tasks. However, your programming situations may be especially suited for 1 out of 3 of the functions.
VBScript Functions : The Len() Function ASP / Getting Started
In this series of our ASP Developer Articles, we will examine a new VbScript function called as ' The Len() Function'. With LEN functions you can calculate the length of the string. Following function calculates the length of a string taken from input area.
A Text-Based Search Engine ASP / Site Navigation and Searching
Have you wanted to allow your users to search through your website, checking for files that contain a particular string? Using the FileSystemObject, you can search through all of the files in a particular directory that contain a particular string.
How to Encrypt String Using MD5 ASP / Security
In classic ASP there is no any encrypt function. But you can use this useful source code to encrypt any string data using MD5. MD5 encryption is a one-way hashing algorithm. MD5 is a great advantage because it is speed and easy to use.
Functions and Subprocedures ASP / Getting Started
Functions and procedures provide a way to create re-usable modules of programming code and avoid rewriting the same block of code every time you do the particular task. If you don't have any functions/procedures in your ASP page, the ASP pages are executed from top to bottom, the ASP parsing engine simply processes your entire file from the beginning to the end.
Math functions ASP / General Development
The following math functions are shown: Abs(), Atn(), Cos(), Exp(), Fix(), Hex(), Int(), Log(), Oct(), Round(), Sgn(), Sin(), Sqr(), Tan().
Some support VBA functions for mailenable mail server ASP / Emailing
Short support functions - Create a postoffice, add a domain to the postoffice, add a mailbox, login, user account and a smtp email address, retrieve account passwords, check if email account exists.
Encoding URL strings ASP / Getting Started
While passing variables as an URL's querystring, you should need to encode the string. All special characters like space must be written in adress bar in a form for browser.