<?xml version="1.0" encoding="iso-8859-1"?><rss version="2.0"><channel><title><![CDATA[Northstar Developer Center - Latest Active Server Pages Content]]></title><link>http://developercenter.northcomp.com</link><description><![CDATA[Northstar Developer Center]]></description><language>en-us</language><copyright>Copyright 1996-2012 Northstar Computer Systems</copyright><managingEditor>editor@northcomp.com</managingEditor><webMaster>editor@northcomp.com</webMaster><docs>http://backend.userland.com/rss</docs><item><title>Can't Clone Recordset</title><link>http://developercenter.northcomp.com/article/Cant-Clone-Recordset</link><guid>http://developercenter.northcomp.com/article/Cant-Clone-Recordset</guid><description>A user recently complained that he couldn't use the Clone method on a recordset. This method is only available for recordsets that aren't forward-only recordset...</description></item><item><title>Calling Subroutines</title><link>http://developercenter.northcomp.com/article/Calling-Subroutines</link><guid>http://developercenter.northcomp.com/article/Calling-Subroutines</guid><description>In VBScript, you can call a subroutine simply by using the name of the subroutine, as shown here:



H...</description></item><item><title>Calling Stored Procedures</title><link>http://developercenter.northcomp.com/article/Calling-Stored-Procedures</link><guid>http://developercenter.northcomp.com/article/Calling-Stored-Procedures</guid><description>You can use your stored procedures with ASP and ADO Connection objects; however, you don't need to use the word 'call' to do it. Just do like this, assuming the...</description></item><item><title>Calling Another Page</title><link>http://developercenter.northcomp.com/article/Calling-Another-Page</link><guid>http://developercenter.northcomp.com/article/Calling-Another-Page</guid><description>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...</description></item><item><title>Cache Common Data</title><link>http://developercenter.northcomp.com/article/Cache-Common-Data</link><guid>http://developercenter.northcomp.com/article/Cache-Common-Data</guid><description>If you're using data from a database in a lookup manner, keep it in local variables or an array instead of continually checking the recordset. This will make yo...</description></item><item><title>Building Multi-Page Forms</title><link>http://developercenter.northcomp.com/article/Building-Multi-Page-Forms</link><guid>http://developercenter.northcomp.com/article/Building-Multi-Page-Forms</guid><description>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...</description></item><item><title>IIS 6.0 File Types</title><link>http://developercenter.northcomp.com/article/IIS-6-File-Types</link><guid>http://developercenter.northcomp.com/article/IIS-6-File-Types</guid><description>One of the "enjoyable" parts of running a web hosting company is dealing with the changes that appear in new releases of products. I run exclusively on Windo...</description></item><item><title>Building a Format Function</title><link>http://developercenter.northcomp.com/article/Building-a-Format-Function</link><guid>http://developercenter.northcomp.com/article/Building-a-Format-Function</guid><description>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:


'''''''''''''''...</description></item><item><title>Building SQL Statements</title><link>http://developercenter.northcomp.com/article/Building-SQL-Statements</link><guid>http://developercenter.northcomp.com/article/Building-SQL-Statements</guid><description>If you are building SQL statements within your ASP code that have data that might have single quote characters in it, be sure to replace every single quote with...</description></item><item><title>Building a Sorting Query</title><link>http://developercenter.northcomp.com/article/Building-a-Sorting-Query</link><guid>http://developercenter.northcomp.com/article/Building-a-Sorting-Query</guid><description>In many of my tables, I provide the option to sort by a column, as is used in the ASP Techniques Tip Archive. To make this work, I build a SQL statement that ad...</description></item><item><title>@TRANSACTION Directive</title><link>http://developercenter.northcomp.com/article/TRANSACTION-Directive</link><guid>http://developercenter.northcomp.com/article/TRANSACTION-Directive</guid><description>If you’re using transactions in your ASP application, remember that the @TRANSACTION directive, however you’re using it, has to be on the first line of your ASP...</description></item><item><title>Generating Static HTML from ASP</title><link>http://developercenter.northcomp.com/article/Generating-Static-HTML-from-ASP</link><guid>http://developercenter.northcomp.com/article/Generating-Static-HTML-from-ASP</guid><description>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...</description></item><item><title>Building a List Automatically, Revisited</title><link>http://developercenter.northcomp.com/article/Building-a-List-Automatically</link><guid>http://developercenter.northcomp.com/article/Building-a-List-Automatically</guid><description>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...</description></item><item><title>Building a DSN-Less Connection</title><link>http://developercenter.northcomp.com/article/Building-a-DSN-Less-Connection</link><guid>http://developercenter.northcomp.com/article/Building-a-DSN-Less-Connection</guid><description>I've gotten a few questions lately asking about DSN-less connections and how to do them in ASP. For starters, DSN stands for Data Source Name, which was a confi...</description></item><item><title>Building a Document Picker </title><link>http://developercenter.northcomp.com/article/Building-a-Document-Picker</link><guid>http://developercenter.northcomp.com/article/Building-a-Document-Picker</guid><description>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...</description></item><item><title>Building a List Automatically</title><link>http://developercenter.northcomp.com/article/Building-a-List-Automatically</link><guid>http://developercenter.northcomp.com/article/Building-a-List-Automatically</guid><description>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...</description></item><item><title>Building a Date Formatting Function</title><link>http://developercenter.northcomp.com/article/Building-a-Date-Formatting-Function</link><guid>http://developercenter.northcomp.com/article/Building-a-Date-Formatting-Function</guid><description>One rule many companies are adopting prior to Y2K is that all dates show all four digits of the year, often in a MM/DD/YYYY format. The problem is that the Form...</description></item><item><title>Build a Dynamic Copyright Line</title><link>http://developercenter.northcomp.com/article/Build-a-Dynamic-Copyright-Line</link><guid>http://developercenter.northcomp.com/article/Build-a-Dynamic-Copyright-Line</guid><description>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...</description></item><item><title>Buffering in Windows Server</title><link>http://developercenter.northcomp.com/article/Buffering-in-Windows-Server</link><guid>http://developercenter.northcomp.com/article/Buffering-in-Windows-Server</guid><description>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....</description></item><item><title>Buffering and Debug Statements</title><link>http://developercenter.northcomp.com/article/Buffering-and-Debug-Statements</link><guid>http://developercenter.northcomp.com/article/Buffering-and-Debug-Statements</guid><description>One of the things I do frequently while I'm programming is dump values out to indicate where I'm at as the page executes. However, if an error occurs, you may o...</description></item></channel></rss>
