<?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>The Blog of Travis Gneiting</title>
	<atom:link href="http://www.blog.travisgneiting.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blog.travisgneiting.com</link>
	<description></description>
	<lastBuildDate>Mon, 30 Aug 2010 12:49:38 +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>Deploying SQL Server Database to Exsisting Production Database</title>
		<link>http://www.blog.travisgneiting.com/2010/08/30/deploying-sql-server-database-to-exsisting-production-database/</link>
		<comments>http://www.blog.travisgneiting.com/2010/08/30/deploying-sql-server-database-to-exsisting-production-database/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 12:49:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Deployment]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=158</guid>
		<description><![CDATA[Here is a good link from MSDN that explains how to deploy database changes to an exsisting database. http://msdn.microsoft.com/en-us/library/ff754344.aspx]]></description>
			<content:encoded><![CDATA[<p>Here is a good link from MSDN that explains how to deploy database changes to an exsisting database.</p>
<p><a title="Database Deployment" href="http://msdn.microsoft.com/en-us/library/ff754344.aspx" target="_blank">http://msdn.microsoft.com/en-us/library/ff754344.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2010/08/30/deploying-sql-server-database-to-exsisting-production-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get a Copyiable list of fields from a table</title>
		<link>http://www.blog.travisgneiting.com/2010/08/10/get-a-copyiable-list-of-fields-from-a-table/</link>
		<comments>http://www.blog.travisgneiting.com/2010/08/10/get-a-copyiable-list-of-fields-from-a-table/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 04:19:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=155</guid>
		<description><![CDATA[A fast way to get a list you can copy into a code file with all the fields in a table. select COLUMN_NAME from INFORMATION_SCHEMA.COLUMNS where TABLE_NAME = &#8216;tablename&#8217;]]></description>
			<content:encoded><![CDATA[<p>A fast way to get a list you can copy into a code file with all the fields in a table.</p>
<p>select COLUMN_NAME from INFORMATION_SCHEMA.COLUMNS where TABLE_NAME = &#8216;tablename&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2010/08/10/get-a-copyiable-list-of-fields-from-a-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eager Loading in Entity Framework</title>
		<link>http://www.blog.travisgneiting.com/2010/08/08/eager-loading-in-entity-framework/</link>
		<comments>http://www.blog.travisgneiting.com/2010/08/08/eager-loading-in-entity-framework/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 21:17:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=152</guid>
		<description><![CDATA[Entity Framework (EF) does not support lazy loading. You must explicitly load the comments advising the EF what to include. Using ctx as new MyDataContext() lvComments.DataSource = ctx.Entity.Include(&#8220;SomethingToInclude&#8221;).First().Comments lvComments.Databind() End Using Or Using ctx as new MyDataContext() Dim MyListOfSomething as List(of ListOfSomething) = ctx.ListOfSomething MyListOfSomething.SomethingToLoad.Load() lvComments.DataSource = MyListOfSomething.Comments lvComments.DataBind() End Using]]></description>
			<content:encoded><![CDATA[<p>Entity Framework (EF) does not support lazy loading. You must explicitly load the comments advising the EF what to include.</p>
<p>Using ctx as new MyDataContext()</p>
<p>lvComments.DataSource = ctx.Entity.Include(&#8220;SomethingToInclude&#8221;).First().Comments<br />
lvComments.Databind()</p>
<p>End Using</p>
<p>Or</p>
<p>Using ctx as new MyDataContext()</p>
<p>Dim MyListOfSomething as List(of ListOfSomething) = ctx.ListOfSomething<br />
MyListOfSomething.SomethingToLoad.Load()<br />
lvComments.DataSource = MyListOfSomething.Comments<br />
lvComments.DataBind()</p>
<p>End Using</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2010/08/08/eager-loading-in-entity-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS Build for ASP.NET Website</title>
		<link>http://www.blog.travisgneiting.com/2010/07/19/ms-build-for-asp-net-website/</link>
		<comments>http://www.blog.travisgneiting.com/2010/07/19/ms-build-for-asp-net-website/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 17:20:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=113</guid>
		<description><![CDATA[The problem: no .csproj file in websites The solution: http://www.dotnetsizzler.com/post/Using-MS-Build-in-ASPNET-Website.aspx Add a proj file to the website, and set up the build to use it.  http://en.csharp-online.net/MSBuild:_By_Example%E2%80%94Dealing_with_MSBuild_Errors]]></description>
			<content:encoded><![CDATA[<p>The problem: no .csproj file in websites</p>
<p>The solution: <a href="http://www.dotnetsizzler.com/post/Using-MS-Build-in-ASPNET-Website.aspx">http://www.dotnetsizzler.com/post/Using-MS-Build-in-ASPNET-Website.aspx</a> Add a proj file to the website, and set up the build to use it.  <a href="http://en.csharp-online.net/MSBuild:_By_Example%E2%80%94Dealing_with_MSBuild_Errors">http://en.csharp-online.net/MSBuild:_By_Example%E2%80%94Dealing_with_MSBuild_Errors</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2010/07/19/ms-build-for-asp-net-website/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Get value asp:Textbox value using javascript</title>
		<link>http://www.blog.travisgneiting.com/2010/07/12/get-value-asptextbox-value-using-javascript/</link>
		<comments>http://www.blog.travisgneiting.com/2010/07/12/get-value-asptextbox-value-using-javascript/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 16:28:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=111</guid>
		<description><![CDATA[Here are a few ways to get the value of an asp textbox document.getElementById(&#8216;&#60;%=Test.ClientID%&#62;&#8217;).value &#60;%=txtMyTextBox.ClientID%&#62; Response.Redirect(&#8220;Form2.aspx?name=&#8221; + txtName.Text + &#8220;&#38;num=&#8221; + txtStNum.Text );]]></description>
			<content:encoded><![CDATA[<h1>Here are a few ways to get the value of an asp textbox</h1>
<ol>
<li>document.getElementById(&#8216;&lt;%=Test.ClientID%&gt;&#8217;).value</li>
<li>&lt;%=txtMyTextBox.ClientID%&gt;</li>
<li>Response.Redirect(&#8220;Form2.aspx?name=&#8221; + txtName.Text + &#8220;&amp;num=&#8221; + txtStNum.Text );</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2010/07/12/get-value-asptextbox-value-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PEX and Moles &#8211; Promising White Box Unit Testing</title>
		<link>http://www.blog.travisgneiting.com/2010/07/12/pex-and-moles-promising-white-box-unit-testing/</link>
		<comments>http://www.blog.travisgneiting.com/2010/07/12/pex-and-moles-promising-white-box-unit-testing/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 13:05:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Testing]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=108</guid>
		<description><![CDATA[Pex automatically generates test from Visual Studio code editor. It tries interesting sets of input and output of a method. This provide a high level of test coverage automatically. Currently it is a Visual Studio add in for testing .NET Framework Applications Moles supports Unit Testing by isolation with detours and stubs. http://research.microsoft.com/en-us/projects/pex/ You can [...]]]></description>
			<content:encoded><![CDATA[<p>Pex automatically generates test from Visual Studio code editor. It tries interesting sets of input and output of a method. This provide a high level of test coverage automatically. Currently it is a Visual Studio add in for testing .NET Framework Applications</p>
<p>Moles supports Unit Testing by isolation with detours and stubs.</p>
<p><a href="http://research.microsoft.com/en-us/projects/pex/">http://research.microsoft.com/en-us/projects/pex/</a></p>
<p>You can try it out online with no install at: <a href="http://www.pexforfun.com/">http://www.pexforfun.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2010/07/12/pex-and-moles-promising-white-box-unit-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick way to convert a generic list to a CSV using String.Join</title>
		<link>http://www.blog.travisgneiting.com/2010/05/25/quick-way-to-convert-a-generic-list-to-a-csv-using-string-join/</link>
		<comments>http://www.blog.travisgneiting.com/2010/05/25/quick-way-to-convert-a-generic-list-to-a-csv-using-string-join/#comments</comments>
		<pubDate>Tue, 25 May 2010 19:14:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=102</guid>
		<description><![CDATA[String.Join(&#8220;,&#8221;,Array.ConvertAll(list.ToArray(),element => element.ToString()));]]></description>
			<content:encoded><![CDATA[<p>String.Join(&#8220;,&#8221;,Array.ConvertAll(list.ToArray(),element => element.ToString())); </p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2010/05/25/quick-way-to-convert-a-generic-list-to-a-csv-using-string-join/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 Steps for Website Testing at a Glance</title>
		<link>http://www.blog.travisgneiting.com/2010/04/26/website-testing-at-a-glance/</link>
		<comments>http://www.blog.travisgneiting.com/2010/04/26/website-testing-at-a-glance/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 16:47:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Testing]]></category>
		<category><![CDATA[How to test software]]></category>
		<category><![CDATA[Software Testing]]></category>
		<category><![CDATA[Website Testing]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=100</guid>
		<description><![CDATA[Website Application Testing Procedures How to test software 1) Functionality Testing Links, Forms, Getting and Setting Data, Validating 2) Usability testing         Navigation, Content 3) Interface testing         Error Handling, Connections 4) Compatibility testing         Cross Browser, Printer, Mobile 5) Performance testing         Load Testing, Stress Testing 6) Security testing         Spam, Hacking, URLs, Scripting [...]]]></description>
			<content:encoded><![CDATA[<h1>Website Application Testing Procedures</h1>
<h2>How to test software</h2>
<p><strong>1)</strong> Functionality Testing</p>
<p>Links, Forms, Getting and Setting Data, Validating<br />
<strong>2)</strong> Usability testing<br />
        Navigation, Content<br />
<strong>3) </strong>Interface testing<br />
        Error Handling, Connections<br />
<strong>4)</strong> Compatibility testing<br />
        Cross Browser, Printer, Mobile<br />
<strong>5)</strong> Performance testing<br />
        Load Testing, Stress Testing<br />
<strong>6) </strong>Security testing<br />
        Spam, Hacking, URLs, Scripting attacks</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2010/04/26/website-testing-at-a-glance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entity Framework &#8211; How to add new object</title>
		<link>http://www.blog.travisgneiting.com/2010/03/31/entity-framework-how-to-add-new-object/</link>
		<comments>http://www.blog.travisgneiting.com/2010/03/31/entity-framework-how-to-add-new-object/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 18:17:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=96</guid>
		<description><![CDATA[For entity framework, you should use ObjectContext.AddObject() instead of Linq to SQL DataContext.TableName.Add()]]></description>
			<content:encoded><![CDATA[<p>For entity framework, you should use <strong>ObjectContext.AddObject()</strong> instead of Linq to SQL <strong>DataContext.TableName.Add()</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2010/03/31/entity-framework-how-to-add-new-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Encrypt Connection String Web.Config</title>
		<link>http://www.blog.travisgneiting.com/2010/03/24/encrypt-connection-string-web-config/</link>
		<comments>http://www.blog.travisgneiting.com/2010/03/24/encrypt-connection-string-web-config/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 15:36:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=91</guid>
		<description><![CDATA[Framework 4 http://msdn.microsoft.com/en-us/library/89211k9b(VS.100).aspx]]></description>
			<content:encoded><![CDATA[<p>Framework 4</p>
<p><a href="http://msdn.microsoft.com/en-us/library/89211k9b(VS.100).aspx">http://msdn.microsoft.com/en-us/library/89211k9b(VS.100).aspx</a><a href="http://msdn.microsoft.com/en-us/library/dx0f3cf2(VS.80).aspx"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2010/03/24/encrypt-connection-string-web-config/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
