<?xml version="1.0" encoding="ISO-8859-1"?>



<rss version="2.0">

<channel>
<title>Soren Winslow's ASP Scripts and Utilities and Web Development Tools and Tutorials</title>
<link>http://www.SorenWinslow.com/ASPScripts.asp</link>
<webMaster>soren@sorenwinslow.com</webMaster>
<description>Soren Winslow's ASP Scripts and Utilities and Web Development Tools and Tutorials and more</description>
<image>
       <url>http://SorenWinslow.com/Img/Soren3.jpg</url>
       <title>Soren Winslow's ASP Scripts and Utilities and Web Development Tools and Tutorials</title>
       <link>http://www.SorenWinslow.com/ASPScripts.asp</link>
</image>
<language>en-us</language>

    <item>
       <title>Multiple RSS News Feed Reader</title>
       <link>http://www.SorenWinslow.com/MultiRSSAspCode.asp</link>
       <guid>http://www.SorenWinslow.com/MultiRSSAspCode.asp</guid>
       <description>
           This script will take several RSS news feeds and combine them into one feed for
           either display or to create a new RSS feed. It also checks for duplicate
           news articles and sorts the multiple feeds by date.
       </description>
       <pubDate>Tue, 30 Sep 2008 11:56:24 GMT</pubDate>
    </item>

    <item>
       <title>Golf Handicap Index Calculator</title>
       <link>http://www.SorenWinslow.com/GolfHandicap.asp</link>
       <guid>http://www.SorenWinslow.com/GolfHandicap.asp</guid>
       <description>
           This is a fairly simple script that will calculate your golf handicap index according to the USGA's formula. 
           Each round of golf is first calculated with the USGA'a formula of of (Score - Course Rating) * 113 /Slope Rating. Depending on the number of rounds entered, 
           a certian number of lowest rounds are then dropped. An average of the remaining differentials is calculated. The average is 
           then multiplied by .96 to get the final handicap index.
       </description>
       <pubDate>Fri, 15 Feb 2008 15:01:57 GMT</pubDate>
    </item>

    <item>
       <title>Sorting Arrays Ascending or Descending</title>
       <link>http://www.SorenWinslow.com/SortArray.asp</link>
       <guid>http://www.SorenWinslow.com/SortArray.asp</guid>
       <description>
           This is a sub-routine that can sort an array in ascending or descending order. It works by running the array, 
           then as a temporary variable is holding the value of that item, it loops through the array again an compares the 
           temporary value to all the other values in the array and reassigns the temporary value to the current array number 
           depending on of you are sorting it ascending or descending. You could compare it to a ladder. The sub-routine will 
           move the temporary value up or down the ladder accordingly and shift the other values in the array to make room for it.
           In the example shown, I have two methods of declaring arrays and how to use them with this sub-routine.
       </description>
       <pubDate>Fri, 25 Jan 2008 15:42:38 GMT</pubDate>
    </item>

    <item>
       <title>Simple, Easy and Modifiable Monthly Calendar</title>
       <link>http://www.SorenWinslow.com/Calendar.asp</link>
       <guid>http://www.SorenWinslow.com/Calendar.asp</guid>
       <description>
           This is a simple monthly calendar that allows you to select the month and year
           then generates the calendar for the year. Because of the way it works and with only
           a minimal amount of calculations, it makes it very easy to modify or manipulate.
           Since the calendar is rendered from a starting date to an ending date,
           that also simplifies being able to run a query on dates against a database
           to check for events or schedules.
       </description>
       <pubDate>Fri, 25 Jan 2008 06:35:13 GMT</pubDate>
    </item>

    <item>
       <title>Standard or Daylight Savings Time Period Function</title>
       <link>http://www.SorenWinslow.com/DST.asp</link>
       <guid>http://www.SorenWinslow.com/DST.asp</guid>
       <description>
           This is a function that will automatically (based on U.S. time changes) will
           determine if your date/time is during the standard time period or during the daylight saving
           time period. An example of this may be if you are pulling data out of a database to create an RSS file 
           where the time zone must be specified to conform (and be valid) to the RSS 2.0 Specifications.
       </description>
       <pubDate>Thu, 17 Jan 2008 17:53:42 GMT</pubDate>
    </item>

    <item>
       <title>Multiple Dynamic Form Select</title>
       <link>http://www.SorenWinslow.com/MultiSelect.asp</link>
       <guid>http://www.SorenWinslow.com/MultiSelect.asp</guid>
       <description>
           This is a script that will help you create a database driven secondary html select based off
           the selection of a database driven primary html select. This script uses a combination of ASP,
           JavaScript and AJAX to display the options. It will fill a second dropdown without
           refreshing or reloading your html page or form.
       </description>
       <pubDate>Fri, 19 Oct 2007 16:38:29 GMT</pubDate>
    </item>

    <item>
       <title>Easy RSS XML Data Feed Importer and Reader</title>
       <link>http://www.SorenWinslow.com/RSSAspCode.asp</link>
       <guid>http://www.SorenWinslow.com/RSSAspCode.asp</guid>
       <description>
           This is an easy and simple ASP script that will import, read and display RSS data feeds. 
           It uses Microsoft.XMLDOM to import and process the code.
           The way this code works, there is no need to use an external XSL style sheet since all the formatting
           is done right within the script.
       </description>
       <pubDate>Fri, 19 Oct 2007 09:36:57 GMT</pubDate>
    </item>

    <item>
       <title>Time Zone Adjustment Utility</title>
       <link>http://www.SorenWinslow.com/TimeZones.asp</link>
       <guid>http://www.SorenWinslow.com/TimeZones.asp</guid>
       <description>
            If your server is in the Eastern time Zone and you are in the Pacific time zone,
            and you would like to get some accurate times without having to think as much.
            For example, you are keeping some kind of page hit log and you would like to
            see the time/date stamp in your time zone instead of the servers time zone.
       </description>
       <pubDate>Fri, 19 Oct 2007 08:42:37 GMT</pubDate>
    </item>

    <item>
       <title>Roman Numeral Converting Formatting Function</title>
       <link>http://www.SorenWinslow.com/RomanNumerals.asp</link>
       <guid>http://www.SorenWinslow.com/RomanNumerals.asp</guid>
       <description>
            This is a function that will convert a number into Roman numerals.
            It takes a look at each place value then converts it into the appropriate roman mumeral value.
            This function also includes proper formatting of values of 4,999 up to 3,999,999,999.
       </description>
       <pubDate>Sun, 01 Jul 2007 08:34:55 GMT</pubDate>
    </item>

    <item>
       <title>Bot Blocker Form Submit Validator</title>
       <link>http://www.SorenWinslow.com/NoBotValidator.asp</link>
       <guid>http://www.SorenWinslow.com/NoBotValidator.asp</guid>
       <description>
            This is a simple ASP script to keep bots from automatically submitting your forms for what ever reason for example 
            an email form or a form to submit a post to a guestbook or blog. Using a combination of random numbers,
            VBScript escape codes and hexadecimal values, it will generate two separate codes, one for the
            user to submit and one to check against once the form is submitted.
       </description>
       <pubDate>Thu, 21 Jun 2007 17:11:06 GMT</pubDate>
    </item>

    <item>
       <title>Display Data In Newspaper Column Format Table</title>
       <link>http://www.SorenWinslow.com/VertCols.asp</link>
       <guid>http://www.SorenWinslow.com/VertCols.asp</guid>
       <description>
            How to display data results from a query in a multiple column table
            listing the data vertically from top to bottom, similarly to newspaper format.
            Here is a process that can do that for you and even give you the flexibility to change
            only the number of columns and the data that is displayed.
       </description>
       <pubDate>Wed, 20 Jun 2007 15:59:20 GMT</pubDate>
    </item>

    <item>
       <title>RSS PubDate Date Formatting Function</title>
       <link>http://www.SorenWinslow.com/RSSDateFunction.asp</link>
       <guid>http://www.SorenWinslow.com/RSSDateFunction.asp</guid>
       <description>
            As you may already know, RSS feeds need to have their PubDate formatted properly to use. 
            You may also know that most databases do not store a date in the same format as a RSS Data feed requires.
            This is a quick and easy way format your date into the required proper RSS PubDate.
       </description>
       <pubDate>Wed, 20 Jun 2007 13:28:07 GMT</pubDate>
    </item>

    <item>
       <title>Email Address Validator Function</title>
       <link>http://www.SorenWinslow.com/EmailValidator.asp</link>
       <guid>http://www.SorenWinslow.com/EmailValidator.asp</guid>
       <description>
            This function checks for just about anything I can think of for
            an email address to not be a valid formatted email address short of pinging the
            domain or sending an actual email and it returns a simple true or false.
       </description>
       <pubDate>Mon, 11 Jun 2007 16:08:27 GMT</pubDate>
    </item>

    <item>
       <title>Easy Bar Graph</title>
       <link>http://www.SorenWinslow.com/BarGraph.asp</link>
       <guid>http://www.SorenWinslow.com/BarGraph.asp</guid>
       <description>
            This script shows how to create a simple bar graph based on numbers pulled
            from a database. You can use it to compare just about any kind of percentage
            data. This script takes your highest number and uses it as your base of 100%.
       </description>
       <pubDate>Mon, 11 Jun 2007 10:36:46 GMT</pubDate>
    </item>

    <item>
       <title>Random Image From a Folder</title>
       <link>http://www.SorenWinslow.com/RandomImage.asp</link>
       <guid>http://www.SorenWinslow.com/RandomImage.asp</guid>
       <description>
            This script is a sub routine that will select a random image from a folder then 
            display it to the screen. It is the same script that is used on the home page of
            SorenWinslow.com.
       </description>
       <pubDate>Mon, 11 Jun 2007 10:05:57 GMT</pubDate>
    </item>

    <item>
       <title>String Converter</title>
       <link>http://www.SorenWinslow.com/ConvStr.asp</link>
       <guid>http://www.SorenWinslow.com/ConvStr.asp</guid>
       <description>
            This script is one of those fun, but almost useless scripts,
            It converts any string inputed into an ASCII code string,
            Hexadecimal code string, Octal code string, Binary code string,
            Server.URLEncode string, and Server.HTMLEncode string.
       </description>
       <pubDate>Wed, 06 Jun 2007 17:03:57 GMT</pubDate>
    </item>

    <item>
       <title>My Photo Gallery Script</title>
       <link>http://www.SorenWinslow.com/PhotoGalleryScript.asp</link>
       <guid>http://www.SorenWinslow.com/PhotoGalleryScript.asp</guid>
       <description>
            This is the script that runs the photo galley on SorenWinslow.com.
            There are many different ways to do a photo galley. This one is a way to do
            it without a database allowing you to just upload new photos, graphics and
            images to a folder and then not worry about it.
       </description>
       <pubDate>Wed, 06 Jun 2007 15:12:55 GMT</pubDate>
    </item>

    <item>
       <title>Divisor</title>
       <link>http://www.SorenWinslow.com/Divisor.asp</link>
       <guid>http://www.SorenWinslow.com/Divisor.asp</guid>
       <description> 
            Quick and easy utility to find all the numbers that will divide evenly into a number. 
            This quick and simple utility may help in setting up large tables. For example if
            I know I will have 4096 table cells, I will find out quickly that
            I could have a table of 256 rows of 16 cells each.
            Good example of a For...Next loop and use of Mod.
       </description>
       <pubDate>Wed, 06 Jun 2007 13:31:47 GMT</pubDate>
    </item>

    <item>
       <title>Random Order Array</title>
       <link>http://www.SorenWinslow.com/RandomOrderArray.asp</link>
       <guid>http://www.SorenWinslow.com/RandomOrderArray.asp</guid>
       <description>
            Let's say you have a list of quotes or any other list and you would like to display them in a random order
            whenever anyone access your page. This code will take your list of quotes, descriptions, or whatever
            and display them in a random order, dispaying them all without repeating any of them.
       </description>
       <pubDate>Wed, 06 Jun 2007 12:31:21 GMT</pubDate>
    </item>

    <item>
       <title>Server To Server File Transfer</title>
       <link>http://www.SorenWinslow.com/FileTrans.asp</link>
       <guid>http://www.SorenWinslow.com/FileTrans.asp</guid>
       <description>
            This script shows how to use XMLHTTP to transfer a file (or list of files)
            from a remote server (or domain) to the server that this script is running on.
            This example also checks to see if the files exists. If it does, it deletes the
            existing file then creates the new file. Otehrwise, it will not create the new file.
       </description>
       <pubDate>Wed, 06 Jun 2007 10:13:31 GMT</pubDate>
    </item>

    <item>
       <title>HTML Color Chart</title>
       <link>http://www.SorenWinslow.com/ColorChart.asp</link>
       <guid>http://www.SorenWinslow.com/ColorChart.asp</guid>
       <description>
            This is an HTML color reference chart that displays 4096 colors and gives you the
            option to choose a different background color.
       </description>
       <pubDate>Tue, 29 May 2007 16:09:07 GMT</pubDate>
    </item>

    <item>
       <title>Server Variables</title>
       <link>http://www.SorenWinslow.com/ServVar.asp</link>
       <guid>http://www.SorenWinslow.com/ServVar.asp</guid>
       <description>
            This script cycles through and outputs all of the server variables (Request.ServerVariables)
            that are available on this server.
       </description>
       <pubDate>Thu, 31 May 2007 13:29:28 GMT</pubDate>
    </item>

    <item>
       <title>Cookie Cutter</title>
       <link>http://www.SorenWinslow.com/CookieCutter.asp</link>
       <guid>http://www.SorenWinslow.com/CookieCutter.asp</guid>
       <description> 
            A script that will display the cookies for the domain that it resides along with their values and key values if they exist.
            Great utility to check if the cookies are holding the values you expected.
       </description>
       <pubDate>Wed, 06 Jun 2007 12:03:23 GMT</pubDate>
    </item>

    <item>
       <title>Chr and Dec Codes</title>
       <link>http://www.SorenWinslow.com/ChrDec.asp</link>
       <guid>http://www.SorenWinslow.com/ChrDec.asp</guid>
       <description>
            This is a reference chart to the codes to display special characters
            in VB applications (known as VB Chr Codes) or in HTML (known as decimal codes or
            HTML Escape Codes). There is also a select list for fonts, so you can see what
            fonts can return other special symbols, like webdings and etc.
       </description>
       <pubDate>Tue, 29 May 2007 11:43:20 GMT</pubDate>
    </item>

    <item>
       <title>Keyboard Alt Codes</title>
       <link>http://www.SorenWinslow.com/AltCodes.asp</link>
       <guid>http://www.SorenWinslow.com/AltCodes.asp</guid>
       <description>
            This is a reference chart to the codes to type special characters using the &#34;Alt&#34; key and number pad on your keyboard.
            It is not necessarily for web development since it works in any text program. such as MS Word, Notepad or any other
            text editor.  For example if you hold down &#34;Alt&#34; on your keyboard and type 0169 on your
            number pad your will get the copyright symbol. Alt+9733 will give you a solid colored star.
       </description>
       <pubDate>Tue, 29 May 2007 10:39:47 GMT</pubDate>
    </item>


</channel>
</rss>






















































