| Visit tutorial >> |
| Folder Object ASP... folder. The Folder Object The Folder object is used to return information about a specified folder. To work with the pr... Folder object you will have to create an instance of the Folder object through the FileSystemObject object. First cre... |
| Hits: 120 |
| Visit tutorial >> |
| Active Server Pages: Using arrays Introduction Instead of having our information (variables or numbers) ... using arrays our information will be in an unique variable. Let´ s check an example: array.asp html title My Arra... |
| Hits: 244 |
| Visit tutorial >> |
| Dictionary Object ASP... object is used to store information in name/value pairs (referred to as key and item) Examples This example demonstrate... Dictionary object and then use the Exists method to check if a specified key exists. This example demonstrates how to ... |
| Hits: 121 |
| Visit tutorial >> |
| ASP Procedures ASP Tutorial AS... call a VBScript procedure from ASP. How to call a JavaScript procedure from ASP. How to call both a JavaScript procedur... ASP file. Procedures The ASP source code can contain procedures and functions: html head % sub vbproc(num1 num2) respon... |
| Hits: 299 |
| Visit tutorial >> |
| Is it a valid em... Wemail="a@aa.us" test1=instr(Wemail "@") value must be 1 test2=instr(Wemail ".") value must be 4 test3=le... Wemail) value must be 6 test4=InStr (test1 Wemail "." 1) value must be test1 2 if test12 OR test25 OR test37 ... |
| Hits: 192 |
| Visit tutorial >> |
| server pages tutorial: Active Server Pages Server-Side Scripting A... Server Pages: Active Server Pages Server-Side Scripting Functions and Procedures abs (n: number) Function. Returns the ... ServerVariables Request.ServerVariables ("HTTP_User-Agent") Function. Returns the client browser type as a string. Re... |
| Hits: 210 |
| Visit tutorial >> |
| keywords from remote URL ASP resources Six extensions in one click Get keywords from remote URL This script may be u... tKeywords.asp % The URL we will work with RemoteURL = "http: www.yourdomain.com/yourpage.html" Create the xml obje... |
| Hits: 233 |
| Visit tutorial >> |
| Logical operators: And Or Xor Eqv Imp Not ASP resources Six extensions in one click Logical operators: And Or ... Logical Operator Function val1 And val2 val1 Or val2 val1 Xor val2 val1 Eqv val2 val1 Imp val2 Not val True if both are... |
| Hits: 379 |
| Visit tutorial >> |
| server pages - Server variable... server and it will show you the values for each of the ServerVariables (use an url like http: www.yoursite.com/yourdir/... servervariables.asp html head TITLE Server Variables/TITLE /head body bgcolor=FFFFFF % For Each Key in Request.Server... |
| Hits: 138 |
| Visit tutorial >> |
| Open Read and Create files A... files Open and Read content from a text file Example 1: This one will be the basic code we need to open a text file: 1... .FileSystemObject") Set wfile = fs.OpenTextFile("c:\Mydir\myfile.txt") filecontent = wfile.ReadAll wfile.close Set ... |
| Hits: 226 |