<?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>Stephen Lacy &#187; Uncategorized</title>
	<atom:link href="http://www.lacy.ie/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://www.lacy.ie</link>
	<description>Impressions as an ASP.Net Developer</description>
	<lastBuildDate>Thu, 25 Feb 2010 16:56:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to stop a javascript event from bubbling</title>
		<link>http://www.lacy.ie/how-to-stop-a-javascript-event-from-bubbling</link>
		<comments>http://www.lacy.ie/how-to-stop-a-javascript-event-from-bubbling#comments</comments>
		<pubDate>Thu, 25 Feb 2010 14:41:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.lacy.ie/?p=266</guid>
		<description><![CDATA[Events on any html document bubble from child up to parent calling the handlers on each element until it reaches the Body.
In order to stop this from happening you can cancel the bubble by setting the cancelBubble property on the event to true
&#60;INPUT TYPE=&#8221;TEXT&#8221; NAME=&#8221;TEXT1&#8243; onclick=&#8221;alert(&#8216;TEXT1&#8242;);event.cancelBubble=true;&#8221;&#62;Name
Taken from http://webdevelopersjournal.com/articles/jsevents2/jsevents2.html


Related posts:Can&#039;t Register Javascript for Invisible Control I [...]


Related posts:<ol><li><a href='http://www.lacy.ie/cant-register-javascript-for-invisible-control' rel='bookmark' title='Permanent Link: Can&#039;t Register Javascript for Invisible Control'>Can&#039;t Register Javascript for Invisible Control</a> <small>I was writing an ASP.Net Dialog Control and I overwrote...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Events on any html document bubble from child up to parent calling the handlers on each element until it reaches the Body.</p>
<p>In order to stop this from happening you can cancel the bubble by setting the cancelBubble property on the event to true</p>
<blockquote><p>&lt;INPUT TYPE=&#8221;TEXT&#8221; NAME=&#8221;TEXT1&#8243; onclick=&#8221;alert(&#8216;TEXT1&#8242;);event.cancelBubble=true;&#8221;&gt;Name</p></blockquote>
<p>Taken from <a href="http://webdevelopersjournal.com/articles/jsevents2/jsevents2.html">http://webdevelopersjournal.com/articles/jsevents2/jsevents2.html</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.lacy.ie%2Fhow-to-stop-a-javascript-event-from-bubbling&amp;linkname=How%20to%20stop%20a%20javascript%20event%20from%20bubbling"><img src="http://www.lacy.ie/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>Related posts:<ol><li><a href='http://www.lacy.ie/cant-register-javascript-for-invisible-control' rel='bookmark' title='Permanent Link: Can&#039;t Register Javascript for Invisible Control'>Can&#039;t Register Javascript for Invisible Control</a> <small>I was writing an ASP.Net Dialog Control and I overwrote...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lacy.ie/how-to-stop-a-javascript-event-from-bubbling/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using RegularExpressionValidator to validate the length of a String</title>
		<link>http://www.lacy.ie/using-regularexpressionvalidator-to-validate-the-length-of-a-string</link>
		<comments>http://www.lacy.ie/using-regularexpressionvalidator-to-validate-the-length-of-a-string#comments</comments>
		<pubDate>Mon, 15 Feb 2010 10:48:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ASP.Net Webforms]]></category>

		<guid isPermaLink="false">http://www.lacy.ie/?p=255</guid>
		<description><![CDATA[This post I&#8217;ll keep short and sweet.
If you are using a Regular Expression Validator you will have the problem that if you use a line break it won&#8217;t validate when you write something like ^.{0,n}$ even though the dot is supposed to match anything
 Apparently the dot isn&#8217;t supposed to match new line characters
I took [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This post I&#8217;ll keep short and sweet.</p>
<p>If you are using a Regular Expression Validator you will have the problem that if you use a line break it won&#8217;t validate when you write something like ^.{0,n}$ <del>even though the dot is supposed to match anything</del></p>
<p><ins> Apparently the dot isn&#8217;t supposed to match new line characters</ins></p>
<p>I took the following from <a href="http://weblogs.asp.net/cosgood/archive/2003/05/06/6604.aspx">http://weblogs.asp.net/cosgood/archive/2003/05/06/6604.aspx</a> although the wrong bracket is used to close off the cardinality</p>
<blockquote><p>^(.|\s){0,n}$</p></blockquote>
<p>That&#8217;s it, just remember to escape the backslash depending on where you are setting the expression.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.lacy.ie%2Fusing-regularexpressionvalidator-to-validate-the-length-of-a-string&amp;linkname=Using%20RegularExpressionValidator%20to%20validate%20the%20length%20of%20a%20String"><img src="http://www.lacy.ie/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lacy.ie/using-regularexpressionvalidator-to-validate-the-length-of-a-string/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Research Project</title>
		<link>http://www.lacy.ie/research-project</link>
		<comments>http://www.lacy.ie/research-project#comments</comments>
		<pubDate>Sun, 01 Feb 2009 19:21:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://lacy.ie/?p=41</guid>
		<description><![CDATA[I&#8217;ve found a research project I wish to support. Its researching the change of our life experience and emotional state over our lifetime. There is a short online survey for it that I really think is worth doing, I will make sure to post the results once its done. The survey is at: http://www.surveymonkey.com/s.aspx?sm=tYfdIfntrXcS1AK08nVEig_3d_3d


No related [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve found a research project I wish to support. Its researching the change of our life experience and emotional state over our lifetime. There is a short online survey for it that I really think is worth doing, I will make sure to post the results once its done. The survey is at: <span><span lang="EN-IE"><span><span></span></span></span></span><span style="font-family: Comic Sans MS;"><a title="http://www.surveymonkey.com/s.aspx?sm=tYfdIfntrXcS1AK08nVEig_3d_3d" href="http://www.surveymonkey.com/s.aspx?sm=tYfdIfntrXcS1AK08nVEig_3d_3d" target="_blank">http://www.surveymonkey.com/s.aspx?sm=tYfdIfntrXcS1AK08nVEig_3d_3d</a></span></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.lacy.ie%2Fresearch-project&amp;linkname=Research%20Project"><img src="http://www.lacy.ie/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lacy.ie/research-project/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Blog</title>
		<link>http://www.lacy.ie/new-blog</link>
		<comments>http://www.lacy.ie/new-blog#comments</comments>
		<pubDate>Mon, 05 Jan 2009 21:26:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://lacy.ie/?p=3</guid>
		<description><![CDATA[Well I&#8217;ve decided to restart my blog entirely, I&#8217;m getting rid of my dedicated server, back on shared hosting for 5 euro a month with blacknight and switched to wordpress because lets face it, its easier to use than drupal.
Time for me to start sorting out name servers, but I have the feeling I&#8217;ll be [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Well I&#8217;ve decided to restart my blog entirely, I&#8217;m getting rid of my dedicated server, back on shared hosting for 5 euro a month with blacknight and switched to wordpress because lets face it, its easier to use than drupal.</p>
<p>Time for me to start sorting out name servers, but I have the feeling I&#8217;ll be posting here a lot more regularly, at least for a while. Watch this space.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.lacy.ie%2Fnew-blog&amp;linkname=New%20Blog"><img src="http://www.lacy.ie/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lacy.ie/new-blog/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->