Microsoft Index Server is a built-in feature of Windows 2000. It provides a service for automatically indexing documents such as HTML, text, and Office documents. The Index Server search facilities can then be used to quickly locate a document.
Search Within Search Results ASP / Database Integration
Want to add value to your current search? Allow your users to search from within search results. As databases grow the necessity for the user to continually narrow a search to the item that they truly want will grow also.
Implementing a Search Engine in ASP ASP / Site Navigation and Searching
As a web site grows, finding content on the site becomes increasingly difficult. To combat the difficulty of finding relevant information on a large site, many developers turn to writing a search engine for their site. This article discusses how to implement such a system using Active Server Pages and SQL Server.
An ASP Tutorial to create your own Database driven Search Engine ASP / Site Navigation and Searching
In this article I will guide you through the steps of creating a simple but effective search engine. We will divide our work into two steps :
Step 1 : Create a set of ASP pages to index the site content.
Step 2 : Create a search engine to offer keyword specific database dependant search to our visitors.
Database Search Engine ASP / Site Navigation and Searching
This sample ASP script we will search a custom query in an SQL database. We will use two custom script in one page and will take query results divided in pages.
A Text-Based Search Engine ASP / Site Navigation and Searching
Have you wanted to allow your users to search through your website, checking for files that contain a particular string? Using the FileSystemObject, you can search through all of the files in a particular directory that contain a particular string.
Creating a Category Site with ASP ASP / Scripts
In this article we will implement a catalog site that is build with Active Server pages and SQL Server. Along with the implementation there is source code and a discussion of the advantages and disadvantages of creating a catalog site that gets it's content from a database. Included are pages for displaying products, creating a menu page, category page, and running a search across a database.
Search db by Field ASP / Database Integration
Providing search capabilities to a db enables users to query on whichever element you target them to. However allowing users to target which portion of the db they would like to query gives extra value.
ASP Form Input to HTML ASP / File Operations
ASP has the ability to write .html or any other text based documents directly to a web server (You need to write the text output to a directory that has write authority). This enables the instantaneous publication of user input without the need for uploading files from a PC.
Searching with Index Server ASP / Site Navigation and Searching
Microsoft Index Server is a useful service for automatically indexing and searching static files located on local hard drives. Index Server indexes Office documents, HTML files, and more. The service can be used either locally to find local files over the intranet, or on the web to search over a website. The Index Server service has been around at least since Windows NT 4 and has been simplified in Windows 2000 Server.
Upload - to database, or not to database? ASP / Database Integration
To database or not to database? What to do with uploaded files on server-side? This article contains performance tests of several store-file methods in server-side ASP.We test store files to disk, to MDB file using ADO recordset, to MS SQL 2000 using ADO recordset and to MS SQL 2000 using SQL UPDATETEXT command.
SmartSurf! ASP tutorial ASP / Site Navigation and Searching
If a user doesn't find what they are looking for in the first couple clicks, the majority of them will move on to greener pastures. So how do you give the user exactly what they're looking for? This tutorial will show you how. Full source code is also available for download.
ASP Data Access for Beginners ASP / Database Integration
The driving force behind Active Server technologies is data access. In order to develop a truly dynamic web site developers need to allow users to access data on demand. Luckily, with Microsoft's Active Server Pages, this is exceedingly easy to do. This article for ASP beginners details how to connect to a SQL Server 7.0 database using ActiveX Data Object (ADO) and Open Database Connectivity (ODBC).