<?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/"
	>

<channel>
	<title>Codelab Blog &#187; News</title>
	<atom:link href="http://blog.codelab.co.nz/tag/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.codelab.co.nz</link>
	<description>Technical Articles and News from Codelab Ltd</description>
	<lastBuildDate>Tue, 17 Jan 2012 13:10:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Off to Wellington</title>
		<link>http://blog.codelab.co.nz/2011/04/01/off-to-wellington/</link>
		<comments>http://blog.codelab.co.nz/2011/04/01/off-to-wellington/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 21:25:15 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.codelab.co.nz/?p=311</guid>
		<description><![CDATA[Its been sometime updating this blog due to well being busy (as usual) and being caught up in the 22nd Feb Earthquake in Christchurch.   Just a bit of an update of what we are doing and where we are heading. Firstly we are relocating to Wellington where Tim will spend his time during the day [...]]]></description>
			<content:encoded><![CDATA[<p>Its been sometime updating this blog due to well being busy (as usual) and being caught up in the 22nd Feb Earthquake in Christchurch.   Just a bit of an update of what we are doing and where we are heading.</p>
<p>Firstly we are relocating to Wellington where Tim will spend his time during the day working for <a href="http://www.nvinteractive.co.nz">NV Interactive</a> as a Senior Developer.  He works for NV in the Christchurch office (the temp office at the moment) but looks forward to working in the Welly office.</p>
<p>Over the past several months (and a few sleepness nights) Codelab have helped <a href="http://www.coolpak.co.nz">Coolpak coldstores</a> upgrade their corporate website onto the ASP.NET MVC3/razor and Entity Framework which is working really well.</p>
<p>We setup and ran <a href="http://www.medicsafe.co.nz">Medicsafe Online Distributors</a> which is a online shop for purchasing Firstaid Kits and supplies.   We have recently handedthis over to <a href="http://www.promed.ac.nz">Pro+Med</a> which is a firstaid and safety training company.   We have also upgraded Pro+Med&#8217;s website to MVC3/Razor using the EF framework.</p>
<p>We have helped <a href="http://www.verb.co.nz">Verb </a>implement the Unicef Campaign Monitoring which was featured in the Timaru Herald several months back.</p>
<p>We have created a <a href="http://wp7applist.com/app/7431/prepare-yourself">new windows phone app called Prepare Yourself</a> that helps users prepare for natural disasters.   This was inspired by the first earthquake in Christchurch in September 2010.</p>
<p>We can now annouce that we are merging the design business Madcow Solutions (ran by my wife) into our company so we will be offering a bunch of new services soon.</p>
<p>Once everything is settled we hope to keep this blog updated with technical posts of problems (and solutions) over a vast range of technologies.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codelab.co.nz/2011/04/01/off-to-wellington/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A way around page refreshes/back button problems with a simple concept</title>
		<link>http://blog.codelab.co.nz/2010/05/17/a-way-around-page-refreshesback-button-problems-with-a-simple-concept/</link>
		<comments>http://blog.codelab.co.nz/2010/05/17/a-way-around-page-refreshesback-button-problems-with-a-simple-concept/#comments</comments>
		<pubDate>Mon, 17 May 2010 09:58:24 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Coding Practices]]></category>

		<guid isPermaLink="false">http://blog.codelab.co.nz/?p=231</guid>
		<description><![CDATA[The problem: You have a form in which the user fills out and clicks a &#8220;submit&#8221; button that validates their input, does some processing and output&#8217;s some results. The problem being the application needs to cater for page refreshes, back buttons and the case of the page being submitted more than once (latency/slow internet connection). [...]]]></description>
			<content:encoded><![CDATA[<p><em>The problem:</em></p>
<p>You have a form in which the user fills out and clicks a &#8220;submit&#8221; button that validates their input, does some processing and output&#8217;s some results. The problem being the application needs to cater for page refreshes, back buttons and the case of the page being submitted more than once (latency/slow internet connection).</p>
<p><em>The Solution:</em></p>
<p>Possible solutions can be (<em>this assumes not using Ajax as a solution</em>), once the user clicks the submit button the server validates the user&#8217;s input and has processed the information. Store a unique id in session and redirect to a &#8220;complete&#8221; page. If the user clicks the back button and resubmits the page, you can build logic to check if a unique id exists in session and if it does, redirect to the complete page without having to re-process the information.</p>
<p>If the user is on the complete page and refreshes the page, because its on a page which has used a GET, there is no processing done and hence no duplication of data.</p>
<p><strong><em>References:</em></strong></p>
<p><a href="http://en.wikipedia.org/wiki/Post/Redirect/Get">http://en.wikipedia.org/wiki/Post/Redirect/Get</a></p>
<p><a href="http://stackoverflow.com/questions/665399/how-do-i-stop-the-back-and-refresh-buttons-from-resubmitting-my-form">http://stackoverflow.com/questions/665399/how-do-i-stop-the-back-and-refresh-buttons-from-resubmitting-my-form</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codelab.co.nz/2010/05/17/a-way-around-page-refreshesback-button-problems-with-a-simple-concept/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Timaru District Council is on Youtube!</title>
		<link>http://blog.codelab.co.nz/2010/04/06/timaru-district-council-is-on-youtube/</link>
		<comments>http://blog.codelab.co.nz/2010/04/06/timaru-district-council-is-on-youtube/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 08:26:53 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.codelab.co.nz/?p=219</guid>
		<description><![CDATA[You can view the photos taken as a time lapse video from the Timaru District Council&#8217;s web cam here.    I implemented the software and web cam back in the days when I was apart from the IT team, and they since have extended it further to make good use of it.  Well done!]]></description>
			<content:encoded><![CDATA[<p>You can view the photos taken as a time lapse video from the Timaru District Council&#8217;s web cam <a href="http://www.youtube.com/user/TimaruDC">here</a>.    I implemented the software and web cam back in the days when I was apart from the IT team, and they since have extended it further to make good use of it.  Well done!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codelab.co.nz/2010/04/06/timaru-district-council-is-on-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CodeLab Update</title>
		<link>http://blog.codelab.co.nz/2008/10/04/codelab-update/</link>
		<comments>http://blog.codelab.co.nz/2008/10/04/codelab-update/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 09:25:07 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.codelab.co.nz/?p=37</guid>
		<description><![CDATA[Hi All, Just to give you an update on what we are doing.   We provide support services and technical expertise to a number of open source products including Moodle and Joomla.   Our clients are education institutes including Aoraki Polytechnic and Pro+Med Medic Training.   We also contract to SPF Multimedia to help develop software products for [...]]]></description>
			<content:encoded><![CDATA[<p>Hi All,</p>
<p>Just to give you an update on what we are doing.   We provide support services and technical expertise to a number of open source products including Moodle and Joomla.   Our clients are education institutes including Aoraki Polytechnic and Pro+Med Medic Training.   We also contract to SPF Multimedia to help develop software products for schools (pre-school, primary, high school and tertiary institutes).</p>
<p>We also do custom software development for Pro+Med where they have a dynamic driven C# ASP.NET website running on our own XTS Web Engine.   This will soon be changed to use the ASP.NET MVC framework.</p>
<p>We are also part of the Timaru Kyokushin Karate club where we manage their http://www.timarukyokushin.co.nz website.</p>
<p>On the side, I&#8217;m work full-time for Verb Ltd as a Lead Developer/Project Manager.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codelab.co.nz/2008/10/04/codelab-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

