<?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>Zero7Web</title>
	<atom:link href="http://blog.zero7web.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.zero7web.com</link>
	<description>Web Design and Development</description>
	<lastBuildDate>Fri, 04 Jun 2010 17:48:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Cheshire Wood Flooring Website goes live</title>
		<link>http://blog.zero7web.com/2010/06/cheshire-wood-flooring-website-goes-live/</link>
		<comments>http://blog.zero7web.com/2010/06/cheshire-wood-flooring-website-goes-live/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 17:46:00 +0000</pubDate>
		<dc:creator>Zero7Web</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Cheshire Wood Flooring]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.zero7web.com/?p=254</guid>
		<description><![CDATA[Cheshire Wood Flooring approached us for a website to promote their services and to expand onto the web.
The site is now looking great and is online. 

]]></description>
			<content:encoded><![CDATA[<p>Cheshire Wood Flooring approached us for a website to promote their services and to expand onto the web.</p>
<p>The site is now looking great and is online. </p>
<p><a href="http://www.cheshirewoodflooring.co.uk"><img class="aligncenter" title="CWF Image" src="http://www.zero7web.com/images/CheshireWoodFlooring.png" alt="Cheshire Wood Flooring" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zero7web.com/2010/06/cheshire-wood-flooring-website-goes-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Create and Delete a cookie in ASP.NET C#</title>
		<link>http://blog.zero7web.com/2010/04/how-to-create-and-delete-a-cookie-in-asp-net-c/</link>
		<comments>http://blog.zero7web.com/2010/04/how-to-create-and-delete-a-cookie-in-asp-net-c/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 12:27:55 +0000</pubDate>
		<dc:creator>Zero7Web</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C-Sharp]]></category>
		<category><![CDATA[cookie]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[session]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.zero7web.com/?p=232</guid>
		<description><![CDATA[I thought I would do a quick post about Creating and more importantly Deleting cookies in ASP.NET as it&#8217;s not quite as obvious as it may seem with the misleading .Remove() method which doesnt do as you would expect.
I hope this helps someone get started with cookies if your just getting started with the .NET [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float:right;border:1px solid #555;margin:10px;" title="Cookie" src="http://2.bp.blogspot.com/_53oMB4-fxXM/SVZZdJntnPI/AAAAAAAAAAM/vXEtrdBFtqI/s1600-R/cookie.gif" alt="I do love Cookies" width="200" />I thought I would do a quick post about Creating and more importantly Deleting cookies in ASP.NET as it&#8217;s not quite as obvious as it may seem with the misleading .Remove() method which doesnt do as you would expect.</p>
<p>I hope this helps someone get started with cookies if your just getting started with the .NET framework.</p>
<div style="clear:both;"></div>
<p></p>
<h2>Creating a cookie</h2>
<p>
This is a basic example of how to create a cookie in ASP.NET C#<br />
 </p>
<pre>//Create a new cookie, passing the name into the constructor
HttpCookie cookie = new HttpCookie("MyCookie");

//Set the cookies value
cookie.Value = "CookieValue";

//Set the cookie to expire in 1 day
cookie.Expires = DateTime.Now.AddDays(1);

//Add the cookie
Response.Cookies.Add(cookie);</pre>
<h2>Deleting a cookie</h2>
<p>
When deleting a cookie all you need to do is amend the HttpCookie object so it has an expiry date in the past, then re-save the cookie to push the new value to the client.<br />
</p>
<pre>// Clear cookie Info
            if(Request.Cookies["MyCookie"]!=null){

                HttpCookie cookie = Request.Cookies["MyCookie"];
                cookie.Expires = DateTime.Now.AddDays(-1);

                Response.Cookies.Add(cookie);
            }</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.zero7web.com/2010/04/how-to-create-and-delete-a-cookie-in-asp-net-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NAB Communications website now online</title>
		<link>http://blog.zero7web.com/2010/04/nab-communications-website-now-online/</link>
		<comments>http://blog.zero7web.com/2010/04/nab-communications-website-now-online/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 06:53:18 +0000</pubDate>
		<dc:creator>Zero7Web</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Cumbria]]></category>
		<category><![CDATA[Custom CMS]]></category>
		<category><![CDATA[Deborah Done]]></category>
		<category><![CDATA[NAB Communications]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[PR]]></category>
		<category><![CDATA[Windermere]]></category>

		<guid isPermaLink="false">http://blog.zero7web.com/?p=225</guid>
		<description><![CDATA[NAB Communications approached us for a website to promote their services and to help to reach new clients. The site has it&#8217;s own basic Content Management System and has been built to a custom specification.
We will now be keeping a close eye on the sites traffic and we will be working closely with Deborah to [...]]]></description>
			<content:encoded><![CDATA[<p>NAB Communications approached us for a website to promote their services and to help to reach new clients. The site has it&#8217;s own basic Content Management System and has been built to a custom specification.</p>
<p>We will now be keeping a close eye on the sites traffic and we will be working closely with Deborah to help her achieve the online success she deserves.</p>
<p><a href="http://www.nabcommunications.co.uk"><div class="wp-caption aligncenter" style="width: 560px"><img class="aligncenter" title="Nab Header Image" src="http://www.nabcommunications.co.uk/images/nab-logo.jpg" alt="" width="550" height="147" /><p class="wp-caption-text">NAB Communication Header</p></div></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zero7web.com/2010/04/nab-communications-website-now-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Unveils Virtual Panoramas of Ski Runs At The 2010 Winter Olympic Games</title>
		<link>http://blog.zero7web.com/2010/02/google-unveils-virtual-panoramas-of-ski-runs-at-the-2010-winter-olympic-games/</link>
		<comments>http://blog.zero7web.com/2010/02/google-unveils-virtual-panoramas-of-ski-runs-at-the-2010-winter-olympic-games/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 12:29:10 +0000</pubDate>
		<dc:creator>Zero7Web</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[ski]]></category>
		<category><![CDATA[street view]]></category>

		<guid isPermaLink="false">http://blog.zero7web.com/2010/02/google-unveils-virtual-panoramas-of-ski-runs-at-the-2010-winter-olympic-games/</guid>
		<description><![CDATA[Google has added the Winter Olympics slopes to its Street View , allowing people to see the same view down a mountain as a skier about to push off in their quest for gold.

Engineer Dan Ratner explained: &#8220;In typical scrappy Google fashion, we were able to put this together over a few weekends. We used [...]]]></description>
			<content:encoded><![CDATA[<p>Google has added the Winter Olympics slopes to its Street View , allowing people to see the same view down a mountain as a skier about to push off in their quest for gold.</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/UJ4pgcrJU8c&#038;hl=en_GB&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/UJ4pgcrJU8c&#038;hl=en_GB&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p>Engineer Dan Ratner explained: &#8220;In typical scrappy Google fashion, we were able to put this together over a few weekends. We used extra pieces from our Street View cars, some 2&#215;4s, some duct tape, and a lot of extra hard drives.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zero7web.com/2010/02/google-unveils-virtual-panoramas-of-ski-runs-at-the-2010-winter-olympic-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Allow hyphens in URL&#8217;s using ASP.NET MVC 2</title>
		<link>http://blog.zero7web.com/2010/02/how-to-allow-hyphens-in-urls-using-asp-net-mvc-2/</link>
		<comments>http://blog.zero7web.com/2010/02/how-to-allow-hyphens-in-urls-using-asp-net-mvc-2/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 14:28:03 +0000</pubDate>
		<dc:creator>Zero7Web</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C-Sharp]]></category>
		<category><![CDATA[Hyphens]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MVC 2.0]]></category>
		<category><![CDATA[URL Routing]]></category>

		<guid isPermaLink="false">http://blog.zero7web.com/?p=200</guid>
		<description><![CDATA[If you wan&#8217;t to allow hyphens in your URL&#8217;s you will need to change the way the routing works in your Global.asax file.
First create a new class which extends the MvcRouteHandler and place this in the Global.asax file after the main MvcApplication class.
C#:

public class HyphenatedRouteHandler : MvcRouteHandler&#123;
	protected override IHttpHandler  GetHttpHandler&#40;RequestContext requestContext&#41;
	&#123;
		requestContext.RouteData.Values&#91;&#34;controller&#34;&#93; = requestContext.RouteData.Values&#91;&#34;controller&#34;&#93;.ToString&#40;&#41;.Replace&#40;&#34;-&#34;, &#34;_&#34;&#41;;
		requestContext.RouteData.Values&#91;&#34;action&#34;&#93; [...]]]></description>
			<content:encoded><![CDATA[<p>If you wan&#8217;t to allow hyphens in your URL&#8217;s you will need to change the way the routing works in your Global.asax file.</p>
<p>First create a new class which extends the <strong>MvcRouteHandler</strong> and place this in the <strong>Global.asax</strong> file after the main <strong>MvcApplication</strong> class.</p>
<p>C#:</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;">public class HyphenatedRouteHandler <span style="color: #339933;">:</span> MvcRouteHandler<span style="color: #009900;">&#123;</span>
	protected override IHttpHandler  GetHttpHandler<span style="color: #009900;">&#40;</span>RequestContext requestContext<span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		requestContext.<span style="color: #202020;">RouteData</span>.<span style="color: #202020;">Values</span><span style="color: #009900;">&#91;</span><span style="color: #ff0000;">&quot;controller&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> requestContext.<span style="color: #202020;">RouteData</span>.<span style="color: #202020;">Values</span><span style="color: #009900;">&#91;</span><span style="color: #ff0000;">&quot;controller&quot;</span><span style="color: #009900;">&#93;</span>.<span style="color: #202020;">ToString</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #202020;">Replace</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;-&quot;</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;_&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		requestContext.<span style="color: #202020;">RouteData</span>.<span style="color: #202020;">Values</span><span style="color: #009900;">&#91;</span><span style="color: #ff0000;">&quot;action&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> requestContext.<span style="color: #202020;">RouteData</span>.<span style="color: #202020;">Values</span><span style="color: #009900;">&#91;</span><span style="color: #ff0000;">&quot;action&quot;</span><span style="color: #009900;">&#93;</span>.<span style="color: #202020;">ToString</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #202020;">Replace</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;-&quot;</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;_&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">return</span> base.<span style="color: #202020;">GetHttpHandler</span><span style="color: #009900;">&#40;</span>requestContext<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>VB:</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #000080;">Public</span> Class HyphenatedRouteHandler
    Inherits MvcRouteHandler
&nbsp;
    Protected Overrides <span style="color: #000080;">Function</span> GetHttpHandler(<span style="color: #000080;">ByVal</span> requestContext <span style="color: #000080;">As</span> System.Web.Routing.RequestContext) <span style="color: #000080;">As</span> System.Web.IHttpHandler
        requestContext.RouteData.Values(&quot;controller&quot;) = requestContext.RouteData.Values(&quot;controller&quot;).ToString.Replace(&quot;-&quot;, &quot;_&quot;)
        requestContext.RouteData.Values(&quot;action&quot;) = requestContext.RouteData.Values(&quot;action&quot;).ToString.Replace(&quot;-&quot;, &quot;_&quot;)
        Return MyBase.GetHttpHandler(requestContext)
    <span style="color: #000080;">End</span> <span style="color: #000080;">Function</span>
&nbsp;
<span style="color: #000080;">End</span> Class</pre></div></div>

<p>Then you need to replace the <strong>routes.MapRoute</strong> with an equivalent <strong>routes.Add</strong> specifying the new handler as the MapRoute does not allow you to specify a custom route handler.</p>
<p>C#:</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;">routes.<span style="color: #202020;">Add</span><span style="color: #009900;">&#40;</span>
	new Route<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;{controller}/{action}/{id}&quot;</span><span style="color: #339933;">,</span> 
		new RouteValueDictionary<span style="color: #009900;">&#40;</span>
			new <span style="color: #009900;">&#123;</span> controller <span style="color: #339933;">=</span> <span style="color: #ff0000;">&quot;Default&quot;</span><span style="color: #339933;">,</span> action <span style="color: #339933;">=</span> <span style="color: #ff0000;">&quot;Index&quot;</span><span style="color: #339933;">,</span> id <span style="color: #339933;">=</span> <span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
			new HyphenatedRouteHandler<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>VB:</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;">routes.Add(<span style="color: #000080;">New</span> Route(&quot;{controller}/{action}/{id}&quot;, 
	<span style="color: #000080;">New</span> RouteValueDictionary(<span style="color: #000080;">New</span> <span style="color: #000080;">With</span> {.controller = &quot;Home&quot;, .action = &quot;Index&quot;, .id = &quot;&quot;}), 
		<span style="color: #000080;">New</span> HyphenatedRouteHandler()))</pre></div></div>

<p>I hope this is useful, any questions feel free to get in touch.</p>
<p>Would like to say thanks to John from <a href="http://stackoverflow.com/questions/2070890/asp-net-mvc-support-for-urls-with-hyphens">here</a> for answering the original question on <a href="http://stackoverflow.com">Stackoverflow</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zero7web.com/2010/02/how-to-allow-hyphens-in-urls-using-asp-net-mvc-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC 2 RC 2 Released</title>
		<link>http://blog.zero7web.com/2010/02/asp-net-mvc-2-rc-2-released/</link>
		<comments>http://blog.zero7web.com/2010/02/asp-net-mvc-2-rc-2-released/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 10:02:52 +0000</pubDate>
		<dc:creator>Zero7Web</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[MVC 2.0 RC"]]></category>
		<category><![CDATA[Phil Haack]]></category>

		<guid isPermaLink="false">http://blog.zero7web.com/?p=198</guid>
		<description><![CDATA[Today ASP.NET MVC 2 RC2 has been released.
To download it click here
It seems there are only a few changes to this release which you can find here: Release Notes
A few words from Phil Haack&#8217;s blog:
The biggest change in this release was described by Brad Wilson in his blog post on Input Validation vs. Model Validation [...]]]></description>
			<content:encoded><![CDATA[<p>Today ASP.NET MVC 2 RC2 has been released.</p>
<p>To download it <a href="http://go.microsoft.com/fwlink/?LinkID=182483">click here</a></p>
<p>It seems there are only a few changes to this release which you can find here: <a href="http://go.microsoft.com/fwlink/?LinkID=182482">Release Notes</a></p>
<p>A few words from Phil Haack&#8217;s blog:</p>
<blockquote><p>The biggest change in this release was described by Brad Wilson in his blog post on <a href="http://bradwilson.typepad.com/blog/2010/01/input-validation-vs-model-validation-in-aspnet-mvc.html">Input Validation vs. Model Validation in ASP.NET MVC</a>. Also included in this release are an assortment of bug fixes and performance improvements.</p>
<p>The window to provide feedback on this release is going to be very short as we are closing in on the RTM. If you want to provide input into this release, please do take the bits for a spin as soon as possible. I’m pretty excited about this release as I can see the end of the tunnel fast approaching. <img src='http://blog.zero7web.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>At this point, we’ll only be taking recall class bugs for ASP.NET MVC 2. All other bug reports will be filed against ASP.NET MVC 3. Sometime in the near future, I’ll start sharing some of our planning around that. How exciting!</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.zero7web.com/2010/02/asp-net-mvc-2-rc-2-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook launch HipHop, a sourcecode-converter from php to c++</title>
		<link>http://blog.zero7web.com/2010/02/facebook-launch-hiphop-a-sourcecode-converter-from-php-to-c/</link>
		<comments>http://blog.zero7web.com/2010/02/facebook-launch-hiphop-a-sourcecode-converter-from-php-to-c/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 12:00:14 +0000</pubDate>
		<dc:creator>Zero7Web</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[hiphop]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[speed]]></category>

		<guid isPermaLink="false">http://blog.zero7web.com/?p=186</guid>
		<description><![CDATA[Yesterday Facebook launched HipHop, a converter from php to c++ so your apps can run twice as fast due to them being compiled not interpreted.
Today I&#8217;m excited to share the project a small team of amazing people and I have been working on for the past two years; HipHop for PHP. With HipHop we&#8217;ve reduced [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday Facebook launched HipHop, a converter from php to c++ so your apps can run twice as fast due to them being compiled not interpreted.</p>
<blockquote><p>Today I&#8217;m excited to share the project a small team of amazing people and I have been working on for the past two years; HipHop for PHP. With HipHop we&#8217;ve reduced the CPU usage on our Web servers on average by about fifty percent, depending on the page. Less CPU means fewer servers, which means less overhead. This project has had a tremendous impact on Facebook. We feel the Web at large can benefit from HipHop, so we are releasing it as open source this evening in hope that it brings a new focus toward scaling large complex websites with PHP. While HipHop has shown us incredible results, it&#8217;s certainly not complete and you should be comfortable with beta software before trying it out. &#8211; <a href="http://developers.facebook.com/news.php?blog=1&#038;story=358">Haiping Zhao (Facebook)</a></p></blockquote>
<p>HipHop is for scaling large multiserver high traffic sites like Facebook. In your regular application, you will get no great advantage from it. It is definately something to be aware of but it does make you think if your trying to compile PHP using a tool like this why not develop in C# (<a href="http://www.asp.net/mvc/">ASP.NET MVC 2 maybe?</a>) that is compiled anyway?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zero7web.com/2010/02/facebook-launch-hiphop-a-sourcecode-converter-from-php-to-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Use JQuery &#8211; The Basics</title>
		<link>http://blog.zero7web.com/2010/01/tutorial-how-to-jquery-basics/</link>
		<comments>http://blog.zero7web.com/2010/01/tutorial-how-to-jquery-basics/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 00:04:33 +0000</pubDate>
		<dc:creator>Zero7Web</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[selector]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.zero7web.com/?p=162</guid>
		<description><![CDATA[JQuery Basics
This post will show you some of the basics of JQuery. It is not an in depth tutorial but will give you some pointers to get you started with JQuery.
OK, the first piece of code you need to use JQuery is a link to the JQuery JS library. First, download the latest JQuery Library [...]]]></description>
			<content:encoded><![CDATA[<p><strong>JQuery Basics</strong><br />
This post will show you some of the basics of JQuery. It is not an in depth tutorial but will give you some pointers to get you started with JQuery.<br />
OK, the first piece of code you need to use JQuery is a link to the JQuery JS library. First, download the latest JQuery Library from the following link&#8230;.<br />
http://docs.jquery.com/Downloading_jQuery<br />
Then link to it like any other javascript file (like so)&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;./js/jquery-1.4.1.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>Obviously choosing the correct path for your version web server file system setup.<br />
The next step after linking the JQuery library is to use it! Look at the following piece of code.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;./js/jquery-1.4.1.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;</span>script<span style="color: #339933;">&gt;</span>
		$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #006600; font-style: italic;">// here is some code</span>
		<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>This is essentially the same as calling a standard Javascript Window.OnLoad event handler, except it&#8217;s the JQuery way.<br />
We are saying&#8230; when the document is ready (loaded) run some code.<br />
This is your basic first step to using JQuery. You can also use other event handlers to launch your code, or even call the functions directly, but often when using JQuery, especially for styling/design features, you will want to run the code and so this is the easiest way.<br />
At the moment this code is not very useful, as it doesn&#8217;t do anything, so let’s add a little more.<br />
Let’s create a very basic html page.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;html&gt;
	&lt;head&gt;
		&lt;title&gt;JQuery Basics&lt;/title&gt;
	&lt;/head&gt;
	&lt;body&gt;
		&lt;a id=&quot;link1&quot; class=&quot;myLink&quot; href=&quot;#&quot;&gt;Link 1&lt;/a&gt;
		&lt;a id=&quot;link2&quot; class=&quot;myLink&quot; href=&quot;#&quot;&gt;Link 2&lt;/a&gt;
		&lt;a id=&quot;link3&quot; class=&quot;myLink&quot; href=&quot;#&quot;&gt;Link 3&lt;/a&gt;
	&lt;/body&gt;
&lt;/html&gt;</pre></div></div>

<p>Ok now let’s add some JQuery&#8230;.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;html&gt;
	&lt;head&gt;
		&lt;title&gt;JQuery Basics&lt;/title&gt;
		&lt;script src=&quot;./js/jquery-1.4.1.js&quot;&gt;&lt;/script&gt;
		&lt;script&gt;
			$(document).ready(function() {
				$('a').click(function() {
					alert(&quot;This is JQuery in action!&quot;);
				});
			});
		&lt;/script&gt;
	&lt;/head&gt;
	&lt;body&gt;
		&lt;a id=&quot;link1&quot; class=&quot;myLink&quot; href=&quot;#&quot;&gt;Link 1&lt;/a&gt;
		&lt;a id=&quot;link2&quot; class=&quot;myLink&quot; href=&quot;#&quot;&gt;Link 2&lt;/a&gt;
		&lt;a id=&quot;link3&quot; class=&quot;myLink&quot; href=&quot;#&quot;&gt;Link 3&lt;/a&gt;
	&lt;/body&gt;
&lt;/html&gt;</pre></div></div>

<p>Now save the file and open it in a web browser. When you click a link you should find you get a popup.<br />
Let’s examine this code a little further.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;This is JQuery in action!&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>The first part</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a'</span><span style="color: #009900;">&#41;</span></pre></div></div>

<p> is a selector, the same as in CSS. Here we are saying apply to all of the A (anchor) tags in the document.<br />
Next we’re saying</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></pre></div></div>

<p>This means for all of those A tags use the click event handler.<br />
Finally we’re saying when that click event is found on an A tag</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;This is JQuery in action!&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p> This generates the popup.<br />
In this example we chose to use</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a'</span><span style="color: #009900;">&#41;</span></pre></div></div>

<p> as our selector, but there are many other ways we can select elements.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#link1'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></pre></div></div>

<p> This is the same as the getElementByID function that is commonly used in JavaScript. Here we are selecting the element with the ID “link1”.<br />
We could also use</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.myLink'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></pre></div></div>

<p>to select all elements with the class name “myLink”.</p>
<p>In our examples we have used the click event handler to launch the code when the link is clicked. We don’t have to add an event handler here if we don’t want to.<br />
Let’s look at another example.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;html&gt;
	&lt;head&gt;
		&lt;title&gt;JQuery Basics&lt;/title&gt;
		&lt;script src=&quot;./js/jquery-1.4.1.js&quot;&gt;&lt;/script&gt;
		&lt;script&gt;
			$(document).ready(function() {
				$('a').addClass(&quot;red&quot;);
			});
		&lt;/script&gt;
	&lt;/head&gt;
	&lt;body&gt;
		&lt;a id=&quot;link1&quot; class=&quot;myLink&quot; href=&quot;#&quot;&gt;Link 1&lt;/a&gt;
		&lt;a id=&quot;link2&quot; class=&quot;myLink&quot; href=&quot;#&quot;&gt;Link 2&lt;/a&gt;
		&lt;a id=&quot;link3&quot; class=&quot;myLink&quot; href=&quot;#&quot;&gt;Link 3&lt;/a&gt;
	&lt;/body&gt;
&lt;/html&gt;</pre></div></div>

<p>This sets all A tags in documents to have the class “red”.<br />
This is a basic class which is built into the JQuery library, but you could just as easily add your own class.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;html&gt;
	&lt;head&gt;
		&lt;title&gt;JQuery Basics&lt;/title&gt;
		&lt;script src=&quot;./js/jquery-1.4.1.js&quot;&gt;&lt;/script&gt;
		&lt;script&gt;
			$(document).ready(function() {
				$('a').addClass(&quot;myClass&quot;);
			});
		&lt;/script&gt;
		&lt;style&gt;
			.myClass {
				color:blue;
				text-decoration:underline;
			}
		&lt;/style&gt;
	&lt;/head&gt;
	&lt;body&gt;
		&lt;a id=&quot;link1&quot; href=&quot;#&quot;&gt;Link 1&lt;/a&gt;
		&lt;a id=&quot;link2&quot; href=&quot;#&quot;&gt;Link 2&lt;/a&gt;
		&lt;a id=&quot;link3&quot; href=&quot;#&quot;&gt;Link 3&lt;/a&gt;
	&lt;/body&gt;
&lt;/html&gt;</pre></div></div>

<p>You could also use first, last, parent and child selectors just like in CSS. For example</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a:first'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">addClass</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;myClass&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>to select the first of the link tags and apply the class “myClass” just to that first link.</p>
<p>These are just a few very basic examples of how you can start using JQuery, look out for more posts in the future where we will show you some of the many other exciting features of JQuery.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zero7web.com/2010/01/tutorial-how-to-jquery-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30,000 Niche Market Articles at Your Fingertips to use as you please (plus e-book creation tool)</title>
		<link>http://blog.zero7web.com/2010/01/30000-niche-market-articles-at-your-fingertips-to-use-as-you-please-plus-e-book-creation-tool/</link>
		<comments>http://blog.zero7web.com/2010/01/30000-niche-market-articles-at-your-fingertips-to-use-as-you-please-plus-e-book-creation-tool/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 12:48:41 +0000</pubDate>
		<dc:creator>Zero7Web</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[affiliate]]></category>
		<category><![CDATA[articles]]></category>
		<category><![CDATA[clickbank]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[making money]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[micro niche]]></category>
		<category><![CDATA[niche]]></category>

		<guid isPermaLink="false">http://blog.zero7web.com/?p=158</guid>
		<description><![CDATA[I found this on another blog and thought it would be very useful for a lot of the readers:
Original Blog Link
I thought this would be of interest to you all. It&#8217;s a piece of software you can get your hands on that gives you access to 30,000 Niche articles that you can use as you [...]]]></description>
			<content:encoded><![CDATA[<p>I found this on another blog and thought it would be very useful for a lot of the readers:<br />
<a href="http://n.otes.co.uk/articles/30k-niche-market-articles-at-your-fingertips/">Original Blog Link</a></p>
<blockquote><p>I thought this would be of interest to you all. It&#8217;s a piece of software you can get your hands on that gives you access to 30,000 Niche articles that you can use as you please. Place them on your blog to generate traffic or give them away as freebies to attract people towards your chargeable products.</p>
<p>You can use these articles to help create backlinks to your sites and you can even create One-of-a-Kind eBooks with the Built in eBook Creation Wizard. Bonus!</p>
<p>There&#8217;s a free video you can watch that shows how it works and just how easy it is to get going. The time you will save by having a massive library of articles is going to be insane!</p>
<p>This is highly recommended by us and we would like to hear your success stories, because there will be a lot of them! I have bought into this package myself and I can honest say I am very glad as I not how content to post on all of my other website to bring in the visitors.</p>
<p><a href="http://ac673widxv42ok2amouhicqe-y.hop.clickbank.net/" target="_top" style="font-size:1.4em;">Visit the site now to watch your free video explaining more&#8230;</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.zero7web.com/2010/01/30000-niche-market-articles-at-your-fingertips-to-use-as-you-please-plus-e-book-creation-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Andi Gibson Photography Website Online</title>
		<link>http://blog.zero7web.com/2010/01/andi-gibson-photography-website-online/</link>
		<comments>http://blog.zero7web.com/2010/01/andi-gibson-photography-website-online/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 13:44:08 +0000</pubDate>
		<dc:creator>Zero7Web</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.zero7web.com/?p=154</guid>
		<description><![CDATA[Andi Gibson&#8217;s Photography site is now online. The simple design was requested to create a nice sleek look. The site is sat on top of a wordpress blog and will be updated regularly with portfolio and company information.

Visit website
]]></description>
			<content:encoded><![CDATA[<p>Andi Gibson&#8217;s Photography site is now online. The simple design was requested to create a nice sleek look. The site is sat on top of a wordpress blog and will be updated regularly with portfolio and company information.</p>
<p><a href="http://www.andigibson.co.uk"><div class="wp-caption aligncenter" style="width: 510px"><img alt="Andi Gibson Photography screenshot" src="http://www.zero7web.com/images/portfolio/website-andigibson.jpg" title="Andi Gibson Photography" width="500" height="100" /><p class="wp-caption-text">Andi Gibson Photography screenshot</p></div></a></p>
<p><a href="http://www.andigibson.co.uk">Visit website</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zero7web.com/2010/01/andi-gibson-photography-website-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
