|
|
|
|
|
Total Hits: 302 | Today: 0 |
Author: Muhammad Zeeshan Arshad.
|
Rating:
|
|

This code will help you to store checkbox or radio button values via Form (to render on screen / to store in a database). This is very useful if you have many checkboxes/radio buttons in a FORM, with the same name and passing back to the FORM. Or if you want to add all values of a variable in the database in one data field....
|
|
|
|
Total Hits: 101 | Today: 0 |
Author: Todorov
|
Rating:
|
|

ASP ServerVariables collection contains information about the server where your ASP script is running on information about the client requesting the ASP script. The ServerVariables collection can give you lots of information about the server settings – Server IP, Server name, Server virtual path, Server Software (IIS4, IIS5 or IIS6), etc. Using ServerVariables you can get your visitors’ IP address, their browser version, their browser language settings....
|
|
|
|
Total Hits: 275 | Today: 0 |
Author: Justin Cook
|
Rating:
|
|

Yes, the title is a mouthful. But unfortunately with classic ASP, trying to make sense of an unsorted array is much worse. It is quite often the case, especially when retrieving data from a database, that it may end up in an array which is not ordered perfectly, perhaps due to incorrect data type settings. And of course, ASP would provide us with no intrinsic array sorting mechanisms. This article will explain how to take the array of that data, and hand it off to a function to sort it based on ...
|
|
|
|
Total Hits: 250 | Today: 0 |
Author: Peter Persits
|
Rating:
|
|

This article will show how to return a Safe Array from an ASP component. It is important to remember that ASP script can only handle Safe arrays of VARIANTs and not any other types. This is, of course, not true about a Visual Basic environment which can handle many types of Safe arrays. The process of creating a skeleton active server component using Visual C++ and ATL ObjectWizard is described in detail in my first article, Handling Errors in Net API Components, so I won't dwell on it here. I a...
|
|
|
|
Total Hits: 341 | Today: 0 |
Author: Chris Garrett
|
Rating:
|
|

Arrays are the lazy programmers friend. They allow you to quickly and easily make lists, if you need an indexed list or not. With VBScript you have four functions to work with arrays, Array, Split, Join and Filter....
|
|
|
|
Total Hits: 260 | Today: 0 |
|
Rating:
|
|

When you use Active Server Pages, there are many special characters that you need to be aware of. Here is a list and description of the most common. Read the article to learn more!...
|
|
|
|
Total Hits: 269 | Today: 0 |
|
Rating:
|
|

Ok, so you want to pass variables between your web pages with the using the QueryString method or the URL bar for you folks still learning ASP lingo. Well, it's as easy as it is passing variables using the form method. One of the most simple and popular ways of passing variables using the querystring method is by using a basic hyperlink....
|
|
|
|
Total Hits: 248 | Today: 0 |
|
Rating:
|
|

Ok, so you want to pass variables between your web pages. Good news, it's a piece of cake with ASP. As with just about everything else in ASP, there are many ways to do this. In this tutorial, we will show you how to pass variables from one page to another using a simple form....
|
|
|
|
Total Hits: 240 | Today: 0 |
|
Rating:
|
|

The EASIEST way to deal with variables!!Allow me to introduce myself. My name is Rob Collyer, I lay eyes upon ASP years ago and have been heavily coding since. It always struck me as a complete pain in the neck the way in which we have all been dealing with variables in ASP, for as long as we have used ASP....
|
|
|
|
Total Hits: 208 | Today: 0 |
Author: Tim Warke
|
Rating:
|
|

Two very useful VBScript functions are SPLIT and UBOUND. They come in very handy for manipulating strings. Let’s look at SPLIT first of all. Lets show a very simple example first of all. We are going to split a sentence and store the parts in an array, we can call the array whatever we want, so let’s call it ‘splitarray’....
|
|
|
|
Total Hits: 234 | Today: 0 |
Author: Tim Warke
|
Rating:
|
|

In an earlier tutorial we looked at the If…then…Else statement and its uses. The SELECT CASE statement in Visual Basic Script adds a bit more functionality than the If…then statement. See the article to learn more!...
|
|
|
|
Total Hits: 112 | Today: 0 |
Author: Tim Warke
|
Rating:
|
|

What are looking at in this tutorial are looping statements in Visual Basic Script (VBScript). These are very useful in particular for displaying records from databases and looping through the records. More on databases in our intermediate tutorials....
|
|
|
|
|
|
|