Visual Basic Script (VBScript) ASP / Miscellaneous
This tutorial describe: Using VBScript in ASP Pages, Mixing VBScript Statements with Static HTML Text, Variables and Expressions in VBScript, Arrays, "Collection" Class.
Show the Number of Users Online ASP / Miscellaneous
Learn how to use global.asa to display the number of users visiting your site. This tutorial can be broken down into two sections, global.asa, and numvis.asp. Before you can begin this tutorial, make sure your host supports global.asa.
How to Grab A HTML Page Within an ASP ASP / Miscellaneous
There is a very cool way to download or grab a file using ServerXMLHTTP class. Using this object you could access and download a remote file out side of your website.
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.
Caching Data in ASP ASP / Miscellaneous
Do you have a web page that takes a long time to generate? Do you have a SQL query that you want to cache the results? This tutorial will show how to use Application variables to store cached data.
Create a PDF from a stored procedure ASP / Miscellaneous
This article explains how to create a stored procedure and to call it from ASP or directly from SQL Server. The stored procedure will in turn create a simple column based report in PDF without using any external tools or libraries (and their associated licensing costs!).
ActiveLogFile performance ASP / Miscellaneous
you need some logging for your asp application. You want to log current time and some other values to the log file and you need to have daily logs.
Flash and ASP ASP / Miscellaneous
We hope our guide not only teaches you to work with this less explored area of web development but also challenges and initiates you into trying to build the product by yourself. We have also consciously included tips and guidelines for better loading speed and small file sizes.
Remote Scripting With JavaScript and ASP ASP / Miscellaneous
Remote scripting is an extremely powerful feature available in both Netscape Navigator (4.x and above) and Internet Explorer (4.x and above). It allows us to use a combination of scripting languages to call server side ASP code from client side pages. Remote scripting treats our ASP pages as objects and allows us to use the object.method syntax to reference the functions contained within them.
FORMATTING CURRENCY - ASP CODING ASP / Miscellaneous
If you are building a shooping cart, you want to modify currency. If you add this simple code inside your code, you may easily change currency format. To make this changes you must modify local identifier of page.
Towards Next Generation URLs ASP / Miscellaneous
For many years we have heard about the impending death of URLs that are difficult to type, remember and preserve. The use of URLs has actually improved little thus far, but changes are afoot in both development practices and Web server technology that should help advance URLs to the next generation.
Access ASP Application object from a remote script ASP / Miscellaneous
ASP has no interface to access Application data from other environment than VBS/JS in context of ASP page in the same application. But we can create a simple http interface and use the Application object from any other environment - wsh, VBA (Word, Excel), etc.
Dynamic Javascript Includes ASP / Miscellaneous
Dynamically include javascript files in your page. Simply place all your javascripts in a sub directory and make one reference in your page to the cs_scripts.asp file. You can then pass + or - with file names to either include or ignore a file in the sub directory.
Emailing Form Results With CDO ASP / Emailing
Here's the Basic code for using CDO for emailing on an NT / IIS server. You must include the first section to instantiate the object, and the rest are the standard email sections.
Beginner's Guide to Effective use of Arrays in ASP ASP / General Development
An array is basically a data structure, which holds a fixed number of variables. Instead of declaring ten string variables to hold ten different elements, you could declare one array and put all the ten elements into the array.
Dynamically Changing Static Web Galleries ASP / Images
This article explains how to dynamically change static HTML Web galleries so that the Web galleries match the color, layout, and design of a Web site. This article will first discuss some tools that will create static HTML Web galleries, then it will describe reasons these static Web galleries will need to change. Finally a detailed description of how to actually implement these dynamic changes to static Web galleries will be presented.