|
|
|
|
|
Total Hits: 360 | Today: 0 |
|
Rating:
|
|

Active Server Pages consist of six built in objects. They are ready made objects which provide functionality to your web pages without requiring you to make custom objects ( though you can if you want to, later on that topic ) . This page contains only reference material on the methods, properties and events available in these objects, if you are not sure how to make use of them then please first go through an introductory article or tutorial on Active Server Pages then come back here. The refer...
|
|
|
|
Total Hits: 643 | Today: 0 |
Author: Rogier Doekes
|
Rating:
|
|

An alternative to using ASP's session object is to build your own using a database. In this article Rogier shows us how... In my opinion the session was a gift from to the development community. I really like the many things you can do with it. I find it especially handy when I develop a webapplication for which a login area is required. All the pages in the application can only be accessed by people who have proper authorization, otherwise the user is redirected to a login page. It’s simple,...
|
|
|
|
Total Hits: 223 | Today: 0 |
|
Rating:
|
|

The Application object is used to share information with all users of your application. When you set an Application Variable, that same variable is accessible throughout your application....
|
|
|
|
Total Hits: 465 | Today: 0 |
Author: Brett Burridge
|
Rating:
|
|

One of the nicest features of ASP.NET is the ability to cache page content. This can be used to substantially reduce load on a website's database - which is an obvious attraction if the site uses Microsoft's Access to store data rather than SQL Server. Unfortunately there is no built in caching system in classic ASP, but it is easy to build one by using the Application object to store data. As such the techniques described in this article can be used to bring useful performance enhancements to l...
|
|
|
|
Total Hits: 387 | Today: 0 |
Author: Faisal Khan.
|
Rating:
|
|

Active Server Pages consist of six built in objects. They are ready made objects which provide functionality to your web pages without requiring you to make custom objects ( though you can if you want to, later on that topic ) . This page contains only reference material on the methods, properties and events available in these objects, if you are not sure how to make use of them then please first go through an introductory article or tutorial on Active Server Pages then come back here. The refer...
|
|
|
|
Total Hits: 247 | Today: 0 |
Author: Chris Garrett
|
Rating:
|
|

Here is a simple way of finding out what Request variables are available. I for one am always forgetting what the server variable is for the users host name, etc. This script outputs everything available for you to copy and paste into your script....
|
|
|
|
Total Hits: 677 | Today: 0 |
Author: Bruce Johnson
|
Rating:
|
|

Are session variables a bad thing in ASP? In this article Bruce examines the pro's and con's of session variables and provides suggestions that you can apply to your own ASP apps.So you've heard the stories about how bad it is to use Session variables in an ASP application. In the news groups, one of the more frequent topics deals with the saving of state in a Web application. Specifically, comparing the ease of use and speed of Session variables versus the overhead of using a database or the aw...
|
|
|
|
Total Hits: 668 | Today: 0 |
Author: Mitchell Harper
|
Rating:
|
|

Using Microsoft SQL Server 2000 and some ASP script, Mitch creates a function that will ping any remote server, digest and process the results, and then return a summary of that ping session through an ASP function.Using Microsoft SQL Server 2000 and some ASP script, we can create a function that will ping any remote server, digest and process the results, and then return a summary of that ping session. This article will just provide a quick example, however, if you’ve been looking for a simple ...
|
|
|
|
Total Hits: 542 | Today: 0 |
Author: Abhi Malani
|
Rating:
|
|

EzCounter is a Session Counter. In this the Counter increments only once in a Session. ...
|
|
|
|
Total Hits: 820 | Today: 0 |
|
Rating:
|
|

You can store values in the Session object. Information stored in the Session object is available for the entire session and has session scope. The following script demonstrates how two types of variables are stored:...
|
|
|
|
Total Hits: 727 | Today: 0 |
|
Rating:
|
|

An application on the Web may be a group of ASP files. The ASP files work together to perform some purpose. The Application object in ASP is used to tie these files together.The Application object is used to store and access variables from any page, just like the Session object. The difference is that ALL users share one Application object, while with Sessions there is one Session object for EACH user.
...
|
|
|
|
Total Hits: 1031 | Today: 0 |
|
Rating:
|
|

The Session object is used to store information about, or change settings for a user session. Variables stored in the Session object hold information about one single user, and are available to all pages in one application....
|
|
|
|
|
|
|