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 Architecture"

ASP Code Doesn't Go Across the Web, Part 3

Another user, Matt Kropp, supplied this information on ASP code not going over the web and some ways to prevent it: This is a very real concern at some si...

Click for more...

ASP Code Doesn't Go Across the Web, Revisited

Several readers, including Jason Kopplin, reminded me of an old bug in Internet Information Server that can actually allow your ASP code to be retrieved across ...

Click for more...

ASP Code Doesn’t Go Across Web

I got a question the other day about how to protect your source code so users can't see it. The person asking wanted to make sure that the code he created in hi...

Click for more...

ASP Code Not Executing

A common question I get a lot is why ASP code isn't executing properly. The users see the ASP delimiter tags when they view the source code of their page and ca...

Click for more...

ASP File Not Processing

A common problem encountered by new developers is not running their ASP pages through the web server. Depending on how the machine is configured, putting an ASP...

Click for more...

ASP Not Loading Properly

A number of users have complained that their ASP pages are not loading properly in particular browsers. If this happens to you, it's not the ASP server-side cod...

Click for more...

ASP on Other Platforms

If you are looking to run ASP on platforms such as Linux, you're out of luck. The one product that was available, ChiliSoft, was purchased by Sun Microsystems. ...

Click for more...

ASP Requires Cookie Support

With all of the panicked people finding information in their cookie files, it's important to remind your users that cookies are required for ASP sites to work p...

Click for more...

ASP Support in Browsers

A question that I get frequently is whether ASP is supported by Netscape or other browsers. The point to remember is that ASP is a server-side technology. Other...

Click for more...

Avoid Global Variables

Whenever possible, declare your variables locally within subroutines. This will save memory resources and in turn, make your applications run faster. Any variab...

Click for more...

Best Language to Use

I get this question a lot: which language is the best for use in Active Server Pages? To answer this question, you have to answer two things: which is best for...

Click for more...

Buffering in Windows Server

One change from IIS 4.0 to IIS 5.0 is how buffering is done. Buffering refers to whether content from the ASP page is sent before or after the page is complete....

Click for more...

Calling Another Page

A number of readers have asked if it is possible to "call" another ASP page in the way you might call a subroutine in another language. Currently, the only opti...

Click for more...