NCS Logo - Click for home page Northstar Developer Center
Platforms
All Platforms
.NET Framework (1.x - 4.x)
Active Server Pages
ASP.NET
C#
SQL Server
VB.NET
Visual Basic

Keywords
ASP.NET Authentication
ASP.NET Data Access
ASP.NET Page Events
.NET Data Types
.NET E-mail
.NET Functions
.NET System.IO
.NET System.Net
.NET System.Net.Sockets
Active Data Objects
ASP Architecture
ASP Black Belt
ASP Built-in Functions
ASP Built-in Objects
ASP Debugging
ASP Performance
ASP Security
ASP Syntax
ASP.NET Controls
ASP.NET Features
ASP.NET Master Pages
ASP.NET Security
Certifications
COM, DCOM, COM+
Data Access
E-Mail
Errors
HTML Tips
IIS
Object-Oriented Programming
SQL
Uncategorized ASP Tips
VB API Programming
VB Forms
VB Syntax

Book Support
Visual Basic 6 Bible
ASP Bible
ASP Weekend Crash Course
ASP.NET At Work
Creating Web Services

All articles with keyword "ASP Black Belt"

A One Page Web Site

One of the goals in writing an ASP application is to minimize the number of places you have to work with code. There are lots of mechanisms for doing this, such...

Click for more...

Adding Comment Blocks

To remind me what I have done to an ASP file, I will add a comment block to the top of every file (after Option Explicit, of course). This comment block usually...

Click for more...

Build a Dynamic Copyright Line

Ever been to a site whose copyrights are out of date? Avoid the problem by creating a dynamic copyright line that can be included in your file through an inclu...

Click for more...

Building a Document Picker

If you have limited space on your page, drop-down lists are an easy way to minimize space consumption for long lists of links or documents. Let's say, for insta...

Click for more...

Building a Format Function

If you want an ASP solution for the missing Format function that you might have liked in Visual Basic, here’s a version in VBScript: '''''''''''''''...

Click for more...

Building a List Automatically

Here's a tip sent in by Wilfred Mathews on how to build either a drop-down list or a multi-row list box by using a database query. While using the Select...

Click for more...

Building a List Automatically, Revisited

In a previous tip, you learned how to build a list (such as a combo box or list box) using a database recordset. If you're using the list multiple times, Amos C...

Click for more...

Building Multi-Page Forms

A reader asked for some advice on multi-page forms, in which a large form (like an insurance application) requires more than one screen of information. As was m...

Click for more...

Generating Static HTML from ASP

In some cases, you may want to generate static HTML pages from your ASP pages. In cases where you're not frequently updating pages or only update them periodica...

Click for more...