<?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>Christopher H. Laco &#187; Manifesto</title>
	<atom:link href="http://chrislaco.com/category/manifesto/feed/" rel="self" type="application/rss+xml" />
	<link>http://chrislaco.com</link>
	<description></description>
	<lastBuildDate>Wed, 28 Jul 2010 00:21:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Always Set Href In Javascripted Links</title>
		<link>http://chrislaco.com/manifesto/always-set-href-in-javascripted-links/</link>
		<comments>http://chrislaco.com/manifesto/always-set-href-in-javascripted-links/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 00:32:33 +0000</pubDate>
		<dc:creator>claco</dc:creator>
				<category><![CDATA[Manifesto]]></category>
		<category><![CDATA[href]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[onclick]]></category>

		<guid isPermaLink="false">http://chrislaco.com/?p=143</guid>
		<description><![CDATA[When using javascript in links onclick event to open windows or perform other navigation related tasks, always set href just like you would if javascript didn&#8217;t exist. If javascript is broken, links still work. &#60;a href="http://example.com/" onclick="doStuff(this.href);"&#62;Open&#60;/a&#62;]]></description>
			<content:encoded><![CDATA[<p>When using javascript in links onclick event to open windows or perform other navigation related tasks, always set href just like you would if javascript didn&#8217;t exist. If javascript is broken, links still work.</p>
<pre class="brush:html">&lt;a href="http://example.com/" onclick="doStuff(this.href);"&gt;Open&lt;/a&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://chrislaco.com/manifesto/always-set-href-in-javascripted-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Websites Must Function Without Javascript</title>
		<link>http://chrislaco.com/manifesto/websites-must-function-without-javascript/</link>
		<comments>http://chrislaco.com/manifesto/websites-must-function-without-javascript/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 04:29:04 +0000</pubDate>
		<dc:creator>claco</dc:creator>
				<category><![CDATA[Manifesto]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[unit tests]]></category>

		<guid isPermaLink="false">http://chrislaco.com/?p=87</guid>
		<description><![CDATA[Websites need to function without javascript enabled.  AJAX and Web 2.0 are fine tools, but don&#8217;t abandon the basics. The ability to interact with a website without javascript means you can easily unit test your website just like you would &#8230; <a href="http://chrislaco.com/manifesto/websites-must-function-without-javascript/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Websites need to function without javascript enabled.  AJAX and Web 2.0 are fine tools, but don&#8217;t abandon the basics. The ability to interact with a website without javascript means you can easily unit test your website just like you would your other classes and executables. Yes, I&#8217;m looking at your ASP.NET 2.0 PostBack Forms.</p>
<pre class="brush:shell">$ curl -F "username=claco" -F "password=badpass" http://localhost/login/ | grep "login failed"</pre>
]]></content:encoded>
			<wfw:commentRss>http://chrislaco.com/manifesto/websites-must-function-without-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Always Set Application Name In SqlClient Connection Strings</title>
		<link>http://chrislaco.com/manifesto/always-set-application-name-in-sqlclient-connection-strings/</link>
		<comments>http://chrislaco.com/manifesto/always-set-application-name-in-sqlclient-connection-strings/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 04:05:21 +0000</pubDate>
		<dc:creator>claco</dc:creator>
				<category><![CDATA[Manifesto]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[application name]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[connection string]]></category>

		<guid isPermaLink="false">http://chrislaco.com/?p=79</guid>
		<description><![CDATA[If you&#8217;re using connection strings on the web, set Application Name to the domain name. If you&#8217;re using connection strings with an executable, set Application Name to the executable name. If you have to use SQL Profiler to diagnose performance &#8230; <a href="http://chrislaco.com/manifesto/always-set-application-name-in-sqlclient-connection-strings/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re using connection strings on the web, set Application Name to the domain name. If you&#8217;re using connection strings with an executable, set Application Name to the executable name. If you have to use SQL Profiler to diagnose performance issues, it will be easier to filter out a specific application or web site.</p>
<pre class="brush:xml">&lt;connectionStrings&gt;
  &lt;add name="LocalSqlServer" connectionString="... Application Name=mywebsite.com;" /&gt;
  &lt;add name="LocalSqlServer" connectionString="... Application Name=myapp.exe" /&gt;
&lt;/connectionStrings&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://chrislaco.com/manifesto/always-set-application-name-in-sqlclient-connection-strings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
