Simple Database Search Engine
Everybody wants a search engine so here you go. If you enter no criteria, all results are displayed.
You can enter keywords separated by spaces or by commas. You can also choose the fields to be searched
and the type of search. Updated on May 2, 2001 and is now a vbscript class (big surprise there) and uses
a new table structure.
10 records found.
NEW IP Address Filtering and Restriction System
Finally, hardcore IP address filtering software for ASP! This example acts as an IP filter for your website. You can block single IPs or spans of IP's (like entire dsl networks, etc...) to accomodate an annoying user's hiccuping IP address. This system is production level and works on any asp file in any IIS website with no recoding. Implemented completely in JScript and allows an unlimited number of IP addresses or spans of IPs to be blocked via blocked IP rules stored in a database. You don't need to add to or recode any of your existing ASP files to protect them!
NEW Debugger Object
The debugger object allows an ASP programmer to see most settings available in the ASP Environment including all inputs passed to the current page, any persisting session or application data or objects, and lets a programmer fully test server I/O (delete, move, copy, read, write, create) for the directory where the class is being called from.
UPDATED MetaGenerator Object
Create a system to generate HTML meta tags for every web page on your site! All you need to do is input your web site information into 1 form and the resulting HTML is created, configured and displayed for you to copy and paste into any web page.
XMLCatalog Object - XML Product Catalog
Use an XML file instead of a database to create a product catalog for a fictional movie distribution company. Instead of SQL, use XML pattern queries to display data.
WinPath Object
Return information about and test absolute directory paths to files, folders or drives ...
WebSiteSearch Object
Create your own web site search engine by writing a class to do all the dirty work. Control the behavior of the class object by setting properties and calling methods in the run time code, just like a component except it compiles on the fly!
Viewing the stored procedures in a database
If you are using SQL Server, you have a guaranteed way to view all your stored procedures using two globally-available system objects: the built-in sysobjects system table and the sp_helptext system stored procedure. MS Access users, it's time to upgrade to SQL Server!
Validating US States with regular expressions
This function will validate all 50 valid US state abbreviations as well as DC.
Validating US Social Security Numbers with regular expressions
If you're recording SSN's from your clients, validate them to ensure that they have proper syntax.
Validating Email Addresses
Validate an email address using regular expressions. This newest implementation adds a second step to the validation to check the end of the email address against all known top level domains to ensure that the email is that much more valid.