<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Walker Software</title>
	<atom:link href="http://www.walkersoftware.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.walkersoftware.com</link>
	<description>Software Because I Need It</description>
	<pubDate>Tue, 19 Aug 2008 14:42:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Three little characters ï»¿ designed to make your life hell</title>
		<link>http://www.walkersoftware.com/programming/60/three-little-characters-i%c2%bb%c2%bf-designed-to-make-your-life-hell/</link>
		<comments>http://www.walkersoftware.com/programming/60/three-little-characters-i%c2%bb%c2%bf-designed-to-make-your-life-hell/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 09:28:12 +0000</pubDate>
		<dc:creator>Martyn</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[ï»¿]]></category>

		<category><![CDATA[UTF-8]]></category>

		<guid isPermaLink="false">http://www.walkersoftware.com/?p=60</guid>
		<description><![CDATA[On more than one occasion these characters ï»¿ have turned up just when everything else seems fine.  Like a tiny weeney scratch on a new car, one that only you know about, these little bastards turn up and take the rest of the day to diagnose.  
So what ï»¿ is for?

ï»¿ cannot be smoked or [...]]]></description>
		<wfw:commentRss>http://www.walkersoftware.com/programming/60/three-little-characters-i%c2%bb%c2%bf-designed-to-make-your-life-hell/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Limiting text input to characters and digits</title>
		<link>http://www.walkersoftware.com/programming/59/limiting-text-input-to-characters-and-digits/</link>
		<comments>http://www.walkersoftware.com/programming/59/limiting-text-input-to-characters-and-digits/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 14:10:39 +0000</pubDate>
		<dc:creator>Martyn</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://www.walkersoftware.com/programming/59/limiting-text-input-to-characters-and-digits/</guid>
		<description><![CDATA[To remove stuff such as punction and spaces (or anything you want) from a text box before sending to the server for validation you can use code like this, first the HTML:-

&#60;input 
name=&#34;name&#34; 
onblur=&#34;this.value = entrycheck(this.value)&#34; 
type=&#34;text&#34; 
size=&#34;20&#34;&#62;

And then the following Javascript will remove invalid characters when the user moves to another field:-

&#60;script type=&#34;text/javascript&#34;&#62;
function namecheck&#40;theInput&#41; [...]]]></description>
		<wfw:commentRss>http://www.walkersoftware.com/programming/59/limiting-text-input-to-characters-and-digits/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ASP code to block multiple ranges of IP&#8217;s from your site</title>
		<link>http://www.walkersoftware.com/programming/58/asp-code-to-block-multiple-ranges-of-ips-from-your-site/</link>
		<comments>http://www.walkersoftware.com/programming/58/asp-code-to-block-multiple-ranges-of-ips-from-your-site/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 11:51:50 +0000</pubDate>
		<dc:creator>Martyn</dc:creator>
		
		<category><![CDATA[Hosting]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[asp]]></category>

		<category><![CDATA[ban ip]]></category>

		<guid isPermaLink="false">http://www.walkersoftware.com/uncategorized/58/asp-code-to-block-multiple-ranges-of-ips-from-your-site/</guid>
		<description><![CDATA[It wasn&#8217;t long before I needed to expand upon banning a few IP&#8217;s.  I needed to be able to ban whole networks so here&#8217;s the Q&#38;D solution:-
First create a text file called ipsec.txt and enter some IP&#8217;s you wish to ban, to ban a network just leave off the end of the IP class [...]]]></description>
		<wfw:commentRss>http://www.walkersoftware.com/programming/58/asp-code-to-block-multiple-ranges-of-ips-from-your-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Write ASP and need a way to block IP&#8217;s from your site?</title>
		<link>http://www.walkersoftware.com/programming/57/write-asp-and-need-a-way-to-block-ips-from-your-site/</link>
		<comments>http://www.walkersoftware.com/programming/57/write-asp-and-need-a-way-to-block-ips-from-your-site/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 08:24:15 +0000</pubDate>
		<dc:creator>Martyn</dc:creator>
		
		<category><![CDATA[Hosting]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[asp]]></category>

		<category><![CDATA[ban ip]]></category>

		<category><![CDATA[globabl.asa]]></category>

		<guid isPermaLink="false">http://www.walkersoftware.com/programming/57/write-asp-and-need-a-way-to-block-ips-from-your-site/</guid>
		<description><![CDATA[This demonstrates how to ban a single IP address, later, I&#8217;ll show how to ban whole networks but chances are you will be able to work that out for yourself anyway after reading this anyway.
If global.asa does not exist then create it and add the following:

sub session_onstart
&#160;
  ip = request.servervariables&#40;&#34;Remote_Addr&#34;&#41;
&#160;
  select case ip
 [...]]]></description>
		<wfw:commentRss>http://www.walkersoftware.com/programming/57/write-asp-and-need-a-way-to-block-ips-from-your-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How The Brits Marshall Jets</title>
		<link>http://www.walkersoftware.com/humour/56/how-the-brits-marshall-jets/</link>
		<comments>http://www.walkersoftware.com/humour/56/how-the-brits-marshall-jets/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 07:59:47 +0000</pubDate>
		<dc:creator>Martyn</dc:creator>
		
		<category><![CDATA[Humour]]></category>

		<guid isPermaLink="false">http://www.walkersoftware.com/uncategorized/56/how-the-brits-marshall-jets/</guid>
		<description><![CDATA[Not entirely connected to software I have to agree, but my father, an ex RAF fighter pilot, sent this to me this morning and I just don&#8217;t want to lose it!


]]></description>
		<wfw:commentRss>http://www.walkersoftware.com/humour/56/how-the-brits-marshall-jets/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
