<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Web Development for the future</title>
	<atom:link href="http://donenet.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://donenet.wordpress.com</link>
	<description>Turning your idea's into websites</description>
	<lastBuildDate>Sun, 08 Apr 2007 22:27:33 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='donenet.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/25ab0ff9ee751519f6da1f3cb0a578a0?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Web Development for the future</title>
		<link>http://donenet.wordpress.com</link>
	</image>
			<item>
		<title>Nested Repeat Regions in ASP</title>
		<link>http://donenet.wordpress.com/2007/04/08/nested-repeat-regions-in-asp/</link>
		<comments>http://donenet.wordpress.com/2007/04/08/nested-repeat-regions-in-asp/#comments</comments>
		<pubDate>Sun, 08 Apr 2007 22:27:33 +0000</pubDate>
		<dc:creator>donenet</dc:creator>
				<category><![CDATA[ASP]]></category>

		<guid isPermaLink="false">http://donenet.wordpress.com/2007/04/08/nested-repeat-regions-in-asp/</guid>
		<description><![CDATA[Here some code and a tutorial on how to create a nested repeat region in ASP:-
http://www.donenet.co.uk/tutorials/nested%5Frepeat/nested%20repeat.html
The Code:-
&#60;%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%&#62;
&#60;!--#include file="../../Connections/connDN.asp" --&#62;
&#60;%
Dim rsNewsletter
Dim rsNewsletter_numRows

Set rsNewsletter = Server.CreateObject("ADODB.Recordset")
rsNewsletter.ActiveConnection = MM_connDN_STRING
rsNewsletter.Source = "SELECT *  FROM tblNewsletter  ORDER BY NLID ASC"
rsNewsletter.CursorType = 0
rsNewsletter.CursorLocation = 2
rsNewsletter.LockType = 1
rsNewsletter.Open()

rsNewsletter_numRows = 0
%&#62;
&#60;%
Dim Repeat1__numRows
Dim Repeat1__index

Repeat1__numRows = -1
Repeat1__index = 0
rsNewsletter_numRows = rsNewsletter_numRows + Repeat1__numRows
%&#62;
&#60;!DOCTYPE html [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=29&subd=donenet&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here some code and a tutorial on how to create a nested repeat region in ASP:-</p>
<p><a href="http://www.donenet.co.uk/tutorials/nested%5Frepeat/nested%20repeat.html" target="_blank">http://www.donenet.co.uk/tutorials/nested%5Frepeat/nested%20repeat.html</a></p>
<p>The Code:-</p>
<pre style="margin-top:0;display:inline;">&lt;%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%&gt;
&lt;!--#include file="../../Connections/connDN.asp" --&gt;
&lt;%
Dim rsNewsletter
Dim rsNewsletter_numRows

Set rsNewsletter = Server.CreateObject("ADODB.Recordset")
rsNewsletter.ActiveConnection = MM_connDN_STRING
rsNewsletter.Source = "SELECT *  FROM tblNewsletter  ORDER BY NLID ASC"
rsNewsletter.CursorType = 0
rsNewsletter.CursorLocation = 2
rsNewsletter.LockType = 1
rsNewsletter.Open()

rsNewsletter_numRows = 0
%&gt;
&lt;%
Dim Repeat1__numRows
Dim Repeat1__index

Repeat1__numRows = -1
Repeat1__index = 0
rsNewsletter_numRows = rsNewsletter_numRows + Repeat1__numRows
%&gt;
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /&gt;
&lt;title&gt;Nested Repeat Region&lt;/title&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;%
While ((Repeat1__numRows &lt;&gt; 0) AND (NOT rsNewsletter.EOF))
%&gt;
&lt;%
Dim rsNewletterTopic__varNLID
rsNewletterTopic__varNLID = "0"
If (rsNewsletter("NLID") &lt;&gt; "") Then
  rsNewletterTopic__varNLID = rsNewsletter("NLID")
End If
%&gt;
&lt;%
Dim rsNewletterTopic
Dim rsNewletterTopic_numRows

Set rsNewletterTopic = Server.CreateObject("ADODB.Recordset")
rsNewletterTopic.ActiveConnection = MM_connDN_STRING
rsNewletterTopic.Source = "SELECT *  FROM tblNewsletterTopic  WHERE NLID = " + Replace(rsNewletterTopic__varNLID, "'", "''") + ""
rsNewletterTopic.CursorType = 0
rsNewletterTopic.CursorLocation = 2
rsNewletterTopic.LockType = 1
rsNewletterTopic.Open()

rsNewletterTopic_numRows = 0
%&gt;
&lt;%
Dim Repeat2__numRows
Dim Repeat2__index

Repeat2__numRows = -1
Repeat2__index = 0
rsNewletterTopic_numRows = rsNewletterTopic_numRows + Repeat2__numRows
%&gt;
  &lt;%=(rsNewsletter.Fields.Item("NLTitle").Value)%&gt;&lt;br /&gt;
&lt;%
While ((Repeat2__numRows &lt;&gt; 0) AND (NOT rsNewletterTopic.EOF))
%&gt;
  &lt;%=(rsNewletterTopic.Fields.Item("NLTName").Value)%&gt;&lt;br /&gt;
  &lt;%
  Repeat2__index=Repeat2__index+1
  Repeat2__numRows=Repeat2__numRows-1
  rsNewletterTopic.MoveNext()
Wend
%&gt; 
&lt;br /&gt;
&lt;%
rsNewletterTopic.Close()
Set rsNewletterTopic = Nothing
%&gt;
&lt;%
  Repeat1__index=Repeat1__index+1
  Repeat1__numRows=Repeat1__numRows-1
  rsNewsletter.MoveNext()
Wend
%&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;%
rsNewsletter.Close()
Set rsNewsletter = Nothing
%&gt;</pre>
<p>Hope it all makes sense&#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/donenet.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/donenet.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donenet.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donenet.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donenet.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donenet.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donenet.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donenet.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donenet.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donenet.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donenet.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donenet.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=29&subd=donenet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://donenet.wordpress.com/2007/04/08/nested-repeat-regions-in-asp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc54bc6ddc360e07c6128b81c616b22d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">donenet</media:title>
		</media:content>
	</item>
		<item>
		<title>Merry Xmas</title>
		<link>http://donenet.wordpress.com/2006/12/21/merry-xmas/</link>
		<comments>http://donenet.wordpress.com/2006/12/21/merry-xmas/#comments</comments>
		<pubDate>Thu, 21 Dec 2006 11:38:53 +0000</pubDate>
		<dc:creator>donenet</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://donenet.wordpress.com/2006/12/21/merry-xmas/</guid>
		<description><![CDATA[Merry Xmas everyone, my New Years resolution will be to try and post more often.  I will try and get some ASP stuff together but am struggling for ideas at present, so if you guys think of anything let me know and I’ll see what I can do.
Idea&#8217;s on the back of a postcard to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=28&subd=donenet&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Merry Xmas everyone, my New Years resolution will be to try and post more often.  I will try and get some ASP stuff together but am struggling for ideas at present, so if you guys think of anything let me know and I’ll see what I can do.</p>
<p>Idea&#8217;s on the back of a postcard to http://donenet.wordpress.com&#8230; LOL </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/donenet.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/donenet.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donenet.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donenet.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donenet.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donenet.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donenet.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donenet.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donenet.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donenet.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donenet.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donenet.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=28&subd=donenet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://donenet.wordpress.com/2006/12/21/merry-xmas/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc54bc6ddc360e07c6128b81c616b22d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">donenet</media:title>
		</media:content>
	</item>
		<item>
		<title>Site Relaunched</title>
		<link>http://donenet.wordpress.com/2006/12/21/site-relaunched/</link>
		<comments>http://donenet.wordpress.com/2006/12/21/site-relaunched/#comments</comments>
		<pubDate>Thu, 21 Dec 2006 11:31:11 +0000</pubDate>
		<dc:creator>donenet</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://donenet.wordpress.com/2006/12/21/site-relaunched/</guid>
		<description><![CDATA[
Ok I know I haven&#8217;t been posting a lot lately but I have plenty of excuses, one of them is the re-launch of the DoneNet website &#8211; www.donenet.co.uk.  The main reson for the change was to conform to DDA (Disability Discrimination Act) standards, using XHTML and CSS and to get rid of all those horrible [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=27&subd=donenet&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://www.donenet.co.uk/dn_site.jpg" alt="New Look Site" align="right" hspace="3" vspace="3" /></p>
<p>Ok I know I haven&#8217;t been posting a lot lately but I have plenty of excuses, one of them is the re-launch of the DoneNet website &#8211; <a href="http://www.donenet.co.uk" title="Donenet" target="_blank">www.donenet.co.uk</a>.  The main reson for the change was to conform to DDA (Disability Discrimination Act) standards, using XHTML and CSS and to get rid of all those horrible tables.  The technology used was as follows:-</p>
<ul>
<li class="MsoNormal">ASP</li>
<li class="MsoNormal">MS Access</li>
<li class="MsoNormal">XHTML</li>
<li class="MsoNormal">CSS</li>
<li class="MsoNormal">AJAX (See Examples Section)</li>
</ul>
<p>I am looking to push for new projects in New Year; I have 2 on the go at present, one for a law firm which will be launching in January and the other being a community based website for my local community council.</p>
<p>If you have any comments on the new look Donenet site please let me know? </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/donenet.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/donenet.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donenet.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donenet.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donenet.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donenet.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donenet.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donenet.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donenet.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donenet.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donenet.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donenet.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=27&subd=donenet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://donenet.wordpress.com/2006/12/21/site-relaunched/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc54bc6ddc360e07c6128b81c616b22d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">donenet</media:title>
		</media:content>

		<media:content url="http://www.donenet.co.uk/dn_site.jpg" medium="image">
			<media:title type="html">New Look Site</media:title>
		</media:content>
	</item>
		<item>
		<title>Tagged By Moody</title>
		<link>http://donenet.wordpress.com/2006/12/21/tagged-by-moody/</link>
		<comments>http://donenet.wordpress.com/2006/12/21/tagged-by-moody/#comments</comments>
		<pubDate>Thu, 21 Dec 2006 11:05:41 +0000</pubDate>
		<dc:creator>donenet</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://donenet.wordpress.com/2006/12/21/tagged-by-moody/</guid>
		<description><![CDATA[He he Moody you finally got me to make a post&#8230;..
Heres the rules&#8212;&#8212;

Grab the closest book to you
Open Page 123
Scroll down to the 5th sentence
Post the next 3 sentences on your blog
Name the book and author
Tag 3 people

&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;
As with the cookies collection, redirection, and buffering, we must add headers befor the server parses the &#60;HTML&#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=26&subd=donenet&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>He he Moody you finally got me to make a post&#8230;..</p>
<p>Heres the rules&#8212;&#8212;</p>
<ul>
<li>Grab the closest book to you</li>
<li>Open Page 123</li>
<li>Scroll down to the 5th sentence</li>
<li>Post the next 3 sentences on your blog</li>
<li>Name the book and author</li>
<li>Tag 3 people</li>
</ul>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>As with the cookies collection, redirection, and buffering, we must add headers befor the server parses the &lt;HTML&gt; tag in our Active Server Pages.</p>
<p>To allow proxy servers to cache output, generated by our ASP pages, we can use the cachecontrol property.</p>
<p>This property can have two values-public or private.  If the value of this property is public, the output will be caqched by proxy servers.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Name of book:- Professional  Active Server Pages 2.0 by Wrox</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>I Tag:</p>
<ol>
<li> Twilight Town</li>
<li>D.a.double-r.e.n</li>
<li><span class="name">kevdotbadger</span></li>
</ol>
<p>Get blogging people&#8230;..</p>
<p>Hey Moo, the  persistant nagging paid of&#8230;. LOL</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/donenet.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/donenet.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donenet.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donenet.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donenet.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donenet.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donenet.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donenet.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donenet.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donenet.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donenet.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donenet.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=26&subd=donenet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://donenet.wordpress.com/2006/12/21/tagged-by-moody/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc54bc6ddc360e07c6128b81c616b22d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">donenet</media:title>
		</media:content>
	</item>
		<item>
		<title>It&#8217;s been a while</title>
		<link>http://donenet.wordpress.com/2006/08/02/its-been-a-while/</link>
		<comments>http://donenet.wordpress.com/2006/08/02/its-been-a-while/#comments</comments>
		<pubDate>Wed, 02 Aug 2006 08:13:34 +0000</pubDate>
		<dc:creator>donenet</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://donenet.wordpress.com/2006/08/02/its-been-a-while/</guid>
		<description><![CDATA[It&#8217;s been a while since my last post but I was gutted when England were dumped out of the world cup, but look out i&#8217;m back and i&#8217;m gonna be doing some more ASP (any suggestions?)
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=25&subd=donenet&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It&#8217;s been a while since my last post but I was gutted when England were dumped out of the world cup, but look out i&#8217;m back and i&#8217;m gonna be doing some more ASP (any suggestions?)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/donenet.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/donenet.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donenet.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donenet.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donenet.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donenet.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donenet.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donenet.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donenet.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donenet.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donenet.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donenet.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=25&subd=donenet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://donenet.wordpress.com/2006/08/02/its-been-a-while/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc54bc6ddc360e07c6128b81c616b22d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">donenet</media:title>
		</media:content>
	</item>
		<item>
		<title>We&#8217;re Out Boo Hoo</title>
		<link>http://donenet.wordpress.com/2006/07/04/were-out-boo-hoo/</link>
		<comments>http://donenet.wordpress.com/2006/07/04/were-out-boo-hoo/#comments</comments>
		<pubDate>Tue, 04 Jul 2006 15:35:56 +0000</pubDate>
		<dc:creator>donenet</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://donenet.wordpress.com/2006/07/04/were-out-boo-hoo/</guid>
		<description><![CDATA[Well it finally happened on Saturday, the bloody lucky cheating  Portuguese gets knocked us out on penalties.   I havn&#8217;t been able to sit at a computer since due to the agony of the coverage on the web&#8230;.
Well I&#8217;m back now and looking forward to Euro 2008, we have a good chance as the group [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=24&subd=donenet&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Well it finally happened on Saturday, the bloody lucky cheating  Portuguese gets knocked us out on penalties.   I havn&#8217;t been able to sit at a computer since due to the agony of the coverage on the web&#8230;.</p>
<p>Well I&#8217;m back now and looking forward to Euro 2008, we have a good chance as the group is a fantastic draw for us.</p>
<p>I will be developing some new ASP tips and tricks very soon and will probably theme them around footie, if you have any requests then drop me a comment or e-mail&#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/donenet.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/donenet.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donenet.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donenet.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donenet.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donenet.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donenet.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donenet.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donenet.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donenet.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donenet.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donenet.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=24&subd=donenet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://donenet.wordpress.com/2006/07/04/were-out-boo-hoo/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc54bc6ddc360e07c6128b81c616b22d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">donenet</media:title>
		</media:content>
	</item>
		<item>
		<title>Working with variables in ASP</title>
		<link>http://donenet.wordpress.com/2006/06/21/working-with-variables-in-asp/</link>
		<comments>http://donenet.wordpress.com/2006/06/21/working-with-variables-in-asp/#comments</comments>
		<pubDate>Wed, 21 Jun 2006 21:14:00 +0000</pubDate>
		<dc:creator>donenet</dc:creator>
				<category><![CDATA[ASP]]></category>

		<guid isPermaLink="false">https://donenet.wordpress.com/2006/06/21/working-with-variables-in-asp/</guid>
		<description><![CDATA[OK here&#39;s a short one, this example shows you how do the basics with variables, it demonstrates how to do a simple bit of maths on a shopping cart.
&#60;%
dim vCART,vSHIPPING,vTOTAL
vCART = 47.99 &#39;this variable would hold the total cart price including VAT, you would probably hold this information in a session variable but for this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=23&subd=donenet&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>OK here&#39;s a short one, this example shows you how do the basics with variables, it demonstrates how to do a simple bit of maths on a shopping cart.<br />
&lt;%</p>
<p>dim vCART,vSHIPPING,vTOTAL</p>
<p>vCART = 47.99 &#39;this variable would hold the total cart price including VAT, you would probably hold this information in a session variable but for this example I have hard coded the price in</p>
<p>vSHIPPING = 3.99<br />
vTOTAL = vCART+vSHIPPING &#39;this variable will give the total price including shipping</p>
<p>%&gt;&nbsp;</p>
<p>To write the total out on the web page all you have to do is:-</p>
<p>&lt;%=vTOTAL%&gt;&nbsp;</p>
<p>And thats it.&nbsp;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/donenet.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/donenet.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donenet.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donenet.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donenet.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donenet.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donenet.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donenet.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donenet.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donenet.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donenet.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donenet.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=23&subd=donenet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://donenet.wordpress.com/2006/06/21/working-with-variables-in-asp/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc54bc6ddc360e07c6128b81c616b22d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">donenet</media:title>
		</media:content>
	</item>
		<item>
		<title>What an amazing goal</title>
		<link>http://donenet.wordpress.com/2006/06/20/what-an-amazing-goal/</link>
		<comments>http://donenet.wordpress.com/2006/06/20/what-an-amazing-goal/#comments</comments>
		<pubDate>Tue, 20 Jun 2006 21:54:46 +0000</pubDate>
		<dc:creator>donenet</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">https://donenet.wordpress.com/2006/06/20/what-an-amazing-goal/</guid>
		<description><![CDATA[Joe Cole played excellent tonight, on occasions I have thought he had hung on to the ball for far too long, and that he should pass it to the overlapping player (A. Cole).
But tonight the guy could not be faulted, he was on fire.
The goal he scored was struck with pure destiny for the back [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=22&subd=donenet&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://www.donenet.co.uk/ss/jcg.jpg" alt="Joe Cole Goal (Amazing)" align="right" border="0" height="300" hspace="3" vspace="3" width="220" />Joe Cole played excellent tonight, on occasions I have thought he had hung on to the ball for far too long, and that he should pass it to the overlapping player (A. Cole).</p>
<p>But tonight the guy could not be faulted, he was on fire.</p>
<p>The goal he scored was struck with pure destiny for the back of the net, it must be up there for the goal of the tournament.</p>
<p>Another player that shone tonight was Owen Hargreaves, his work rate was unbileavable, he realy covered well for Lampard when he was getting forward.</p>
<p>Well we&#39;re through to the last 16 now and it&#39;s Ecuador next, all we have to do till then is practice the defending set pieces and get through to the last 8.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/donenet.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/donenet.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donenet.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donenet.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donenet.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donenet.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donenet.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donenet.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donenet.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donenet.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donenet.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donenet.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=22&subd=donenet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://donenet.wordpress.com/2006/06/20/what-an-amazing-goal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc54bc6ddc360e07c6128b81c616b22d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">donenet</media:title>
		</media:content>

		<media:content url="http://www.donenet.co.uk/ss/jcg.jpg" medium="image">
			<media:title type="html">Joe Cole Goal (Amazing)</media:title>
		</media:content>
	</item>
		<item>
		<title>Come on ENGLAND!</title>
		<link>http://donenet.wordpress.com/2006/06/20/come-on-england/</link>
		<comments>http://donenet.wordpress.com/2006/06/20/come-on-england/#comments</comments>
		<pubDate>Tue, 20 Jun 2006 16:17:45 +0000</pubDate>
		<dc:creator>donenet</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">https://donenet.wordpress.com/2006/06/20/come-on-england/</guid>
		<description><![CDATA[I hope England give those Swedes a good mashing tonight, now that it looks like Rooney will start we should be able to play properly.
My prediction for tonight is &#8211; England 3 &#8211; Sweden 1
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=21&subd=donenet&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I hope England give those Swedes a good mashing tonight, now that it looks like Rooney will start we should be able to play properly.</p>
<p><b>My prediction for tonight is &#8211; England 3 &#8211; Sweden 1</b></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/donenet.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/donenet.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donenet.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donenet.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donenet.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donenet.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donenet.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donenet.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donenet.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donenet.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donenet.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donenet.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=21&subd=donenet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://donenet.wordpress.com/2006/06/20/come-on-england/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc54bc6ddc360e07c6128b81c616b22d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">donenet</media:title>
		</media:content>
	</item>
		<item>
		<title>Show and hide elements with ASP</title>
		<link>http://donenet.wordpress.com/2006/06/19/show-and-hide-elements-with-asp/</link>
		<comments>http://donenet.wordpress.com/2006/06/19/show-and-hide-elements-with-asp/#comments</comments>
		<pubDate>Mon, 19 Jun 2006 13:38:44 +0000</pubDate>
		<dc:creator>donenet</dc:creator>
				<category><![CDATA[ASP]]></category>

		<guid isPermaLink="false">https://donenet.wordpress.com/2006/06/19/show-and-hide-elements-with-asp/</guid>
		<description><![CDATA[This trick will help may of the readers of this blog hide and show elements of a page or even run commands when a certain event happens.
you can do this by either passing the event trigger via a form event or a query string, in this instance we are going to do it by way [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=20&subd=donenet&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This trick will help may of the readers of this blog hide and show elements of a page or even run commands when a certain event happens.</p>
<p>you can do this by either passing the event trigger via a form event or a query string, in this instance we are going to do it by way of a query string.</p>
<p>The example we will use is a simple question and answer (What does ASP stand for), the code below is commented so it should be straight forward to understand.</p>
<p>&lt;%@LANGUAGE=&quot;VBSCRIPT&quot; CODEPAGE=&quot;1252&quot;%&gt;<br />
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;<br />
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot; /&gt;<br />
&lt;title&gt;Show and hide elements with ASP &#8211; by Robbie Done&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;</p>
<p>What does ASP stand for?&lt;br /&gt;</p>
<p>&lt;ol&gt;<br />
&lt;li&gt;&lt;a href=&quot;?answer=w&quot;&gt;A Super Person&lt;/a&gt; &lt;!&#8211;This line passes a query string back to this page, note that it woll pass (&quot;?answer=w&quot;)&#8211;&gt;<br />
&lt;li&gt;&lt;a href=&quot;?answer=c&quot;&gt;Active Server Pages&lt;/a&gt; &lt;!&#8211;This line passes a query string back to this page, note that it woll pass (&quot;?answer=a&quot;)&#8211;&gt;<br />
&lt;li&gt;&lt;a href=&quot;?answer=s&quot;&gt;Altitude Sensory Paddle&lt;/a&gt; &lt;!&#8211;This line passes a query string back to this page, note that it woll pass (&quot;?answer=s&quot;)&#8211;&gt;<br />
&lt;/ol&gt;<br />
&lt;br /&gt;<br />
&lt;%<br />
If Request.QueryString(&quot;answer&quot;) &lt;&gt; &quot;&quot; Then &#39;The answer script is not called untill one of answers has been selected, it is basically saying in english &#8211; if the query string called answer is not equal to nothing then do this&#8230;<br />
If Request.QueryString(&quot;answer&quot;) = &quot;w&quot; Then<br />
Response.Write(&quot;Wrong Answer!&quot;&amp;&quot;&lt;br /&gt;&lt;br /&gt;&quot;)<br />
Else If Request.QueryString(&quot;answer&quot;) = &quot;c&quot; Then<br />
Response.Write(&quot;You Are Correct&quot;&amp;&quot;&lt;br /&gt;&lt;br /&gt;&quot;)<br />
Else Response.Write(&quot;Are You Kidding? Try Again!&quot;&amp;&quot;&lt;br /&gt;&lt;br /&gt;&quot;) &#39;This line of code is not like the above 2 request because if we know the query string is not equal to w nor c then it must be the remaining one of the 3<br />
End If<br />
End If<br />
End If &#39;End of answer script<br />
%&gt;<br />
&lt;a href=&quot;?&quot;&gt;Reset&lt;/a&gt;<br />
&lt;!&#8211;This hyperlink will reset the page as it does not contain a querystring &#8211;&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>And that&#39;s how easy it is to show and hide elements using ASP.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/donenet.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/donenet.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donenet.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donenet.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donenet.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donenet.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donenet.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donenet.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donenet.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donenet.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donenet.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donenet.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donenet.wordpress.com&blog=78908&post=20&subd=donenet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://donenet.wordpress.com/2006/06/19/show-and-hide-elements-with-asp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc54bc6ddc360e07c6128b81c616b22d?s=96&#38;d=identicon" medium="image">
			<media:title type="html">donenet</media:title>
		</media:content>
	</item>
	</channel>
</rss>