Counts clicks and shows of each banner.

Features 

1. BannerAd
          
- Banners refresh at a set time 
           - Counts the sho
ws and clicks of each banner
           - Easy to insert into pages

2. Admin 
          
- Password protected online administration 
           -Ability to change admin username and password
           - Add / edit / delete, banners 
           - Change refresh rate of rotation page 
           - Reset the shows and clicks counters 
          
- Shows only the banners you set to active      

                                                                                                                   


FEATURES

                                                                                                        




       7.  Add New Users to EzMTS Mail Server from ASP Page - Tony G
                Allows new users to signup for an e-mail account via an ASP webpage. Made for EzMTS e-mail server and is specific to EzMTS. The code edits the user database which is just a text file and adds the new user from the webpage. This automates the system to an extent. It took some effort to edit it properly maintaining the integrity of the file. I have released it for some feedback, hopefully improvements. I think it is far better to do things this way than with the use of editing addusers.exe which then must be run from the webpage using WSH. Note: The file must be set-up properly for this to work. Remember to set the proper permission so this work. FILE MUST LOOK LIKE BELOW NOTHING ELSE. [User] Count=3 User0=Postmaster User1=webmaster User2=Username ;! [Passwords] webmaster=planetsourcecode Username=Password

                                                                                               
 


      8. Host Multiple sites on XP Pro, domain redirects - Mark Kahn

                           Originally this was written because I wanted to host multiple sites on my laptop (for development purposes), but XP pro doesn't allow a user to create multiple sites. So, this script takes in a URL and redirects to the appropriate site specified in a simple text file. i.e. www.yoursite.com can be redirected to www.someothersite.com/yoursite the second purpose of this script (unintentional, but very useful) is to redirect based on the properties of a URL. Our server has imail running on it, and the webmail requires users to go to http://www.somesite.com:8383 to login. This script allows users to go to http://mail.somesite.com and be auto-redirected. It also allows any usernames to be auto-redirected to the appropriate folder (i.e. someuser.somesite.com can be redirected to ww.somesite.com/someuser), etc etc Additionally, if this script is set as the 404 handler (or incorporated into it), URLs like www.yoursite.com/somesite.asp can be redirected to www.somesite.com/yoursite/somesite.asp                                                  

                                                                                                    
 


      9.  IP Logging Script - Paul Morgan
                              Logs the user's ip address, NT login name, and the time. Useful for keeping track of the users that log onto a protected page (i.e. remote admin page). Just create a text file anywhere on your server, and replace the path in the line Set file = fs.OpenTextFile("c:\yourfile.txt", 8) with the path to your text file. It then appends the following to the text file- User [NT LOGIN NAME] logged in at [THE TIME] with the ip of [REMOTE IP ADDRESS]. Tip: Put at the beginning of the page so that it logs before it displays anything.

                                                                                                      
 


      10. Pure ASP Barcode Generator - Mark Kahn
                     This script generates a .bmp barcode from scratch with no COM+ object required. Supports only a few types, but the common ones (UPC-A, code128b, code39, EAN-13).
                                                                                                         


       11. ParseInt - Adonis Villanueva
                 
This function is similar to Int32.Parse() method from ASP.NET. It returns (parses) an integer embedded in a string of characters --> IntParse("abd23dk4") returns 234. Classic ASP does not have a function that is similar to Int32.Parse therefore I created my own. This uses the VBScript.RegExp object for regular expressions.