<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>The Blog of Travis Gneiting</title>
	<link>http://www.blog.travisgneiting.com</link>
	<description></description>
	<lastBuildDate>Wed, 16 Nov 2011 14:03:19 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	

	<item>
		<title>Notes on SQLMembership Provider using the MembershipProvider Class</title>
		<description><![CDATA[1. Set the tag to use &#8220;forms&#8221; in the config 2. use the reg_sql to generate the SQL tables for use with SQLMembership Provider. 3. Add]]></description>
		<link>http://www.blog.travisgneiting.com/2011/11/15/notes-on-sqlmembership-provider-using-the-membershipprovider-class/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=notes-on-sqlmembership-provider-using-the-membershipprovider-class</link>
			</item>
	<item>
		<title>Table to Excel XLS code</title>
		<description><![CDATA[Dim StringWriter1 As IO.StringWriter Dim StringBuilder1 As StringBuilder = New StringBuilder StringWriter1 = New IO.StringWriter(StringBuilder1) Dim TextWriter1 As HtmlTextWriter = New HtmlTextWriter(oStringWriter) label.RenderControl(oTextWriter) Response.Clear() Response.ClearHeaders() Response.ContentType = &#8220;application/vnd.xls&#8221; Response.AddHeader(&#8220;Content-Disposition&#8221;, &#8220;attachment;filename=WLMS-exlfile.xls&#8221;) Response.Write(StringWriter1.ToString()) Response.Flush() Response.End()]]></description>
		<link>http://www.blog.travisgneiting.com/2011/11/15/table-to-excel-xls-code/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=table-to-excel-xls-code</link>
			</item>
	<item>
		<title>New Website Checklist</title>
		<description><![CDATA[Checklist · Twitter Account · Facebook Business Page Account · Google Business · Linked In Business Page · Human.txt · Robot.txt · Emails · News Letters · Privacy Policy · Contact Us · Sitemap · Blog · Forum Website Tools · Google Webmaster Tools · Google Alerts · Google Keyword Tools · addThis · Google [...]]]></description>
		<link>http://www.blog.travisgneiting.com/2011/11/14/new-website-checklist/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-website-checklist</link>
			</item>
	<item>
		<title>Google Blueprint CSS Love</title>
		<description><![CDATA[http://blueflavor.com/blog/2007/oct/24/blueprint-css-101/]]></description>
		<link>http://www.blog.travisgneiting.com/2011/11/01/google-blueprint-css-love/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-blueprint-css-love</link>
			</item>
	<item>
		<title>Microsoft Project Code Name Velocity</title>
		<description><![CDATA[Microsoft Velocity provides distributed in-memory web application caching. This provides highly scalable, high-performance application caching. “Velocity Caching” can be used to cache any Common Language Runtime (CLR is the Virtual Machine of Microsoft’s .NET initiative) through simple API’s. From a general standpoint, Velocity was created with the goal of providing performance, scalability and availability. The [...]]]></description>
		<link>http://www.blog.travisgneiting.com/2011/11/01/microsoft-project-code-name-velocity/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=microsoft-project-code-name-velocity</link>
			</item>
	<item>
		<title>Microsoft and PHP Patterns and Practices</title>
		<description><![CDATA[http://msdn.microsoft.com/en-us/practices/default.aspx According to Microsoft P&#38;P (Patterns and Practices) were created to meet the demands of architects and application developers.By following proven patterns and practices it is suggested that more sound applications will be the result. Included in P&#38;P How to design Develop Deploy Operate architecturally sound applications on a Microsoft platform. P&#38;P for Web Applications [...]]]></description>
		<link>http://www.blog.travisgneiting.com/2011/11/01/microsoft-and-php-patterns-and-practices/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=microsoft-and-php-patterns-and-practices</link>
			</item>
	<item>
		<title>Calling WebService from Javascript Error</title>
		<description><![CDATA[I recently wasn getting the following error when trying to call a webservice from javascript. &#8220;Request format is unrecognized for URL unexpectedly ending in &#8216;/Search&#8217;.&#8221; I was able to invoke the web services from the test page offered by visual studio, but accessing it outside the invoke method on the test page would not work. [...]]]></description>
		<link>http://www.blog.travisgneiting.com/2011/08/26/calling-webservice-from-javascript-error/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=calling-webservice-from-javascript-error</link>
			</item>
	<item>
		<title>CSS 3 and HTML 5 Button</title>
		<description><![CDATA[]]></description>
		<link>http://www.blog.travisgneiting.com/2011/07/29/css-3-and-html-5-button/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=css-3-and-html-5-button</link>
			</item>
	<item>
		<title>Setting the SelectedValue of RadioButtonList &amp; DropDownList in GridView EditItemTemplate</title>
		<description><![CDATA[Here is a trick one, because IntelliSense doesn&#8217;t bring up the &#8220;SelectedValue&#8221; property for a RadioButtonList, or a DropDownList in an EditItemTemplate for GridViews you may forget that &#8220;SelectedValue&#8221; is an actual property of these controls. Here is how you can set the selected value of a RadioButtonList inside an EditItemTemplate]]></description>
		<link>http://www.blog.travisgneiting.com/2011/06/19/setting-the-selectedvalue-of-radiobuttonlist-dropdownlist-in-gridview-edititemtemplate/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=setting-the-selectedvalue-of-radiobuttonlist-dropdownlist-in-gridview-edititemtemplate</link>
			</item>
	<item>
		<title>Custom Field RequiredFieldValidator Highlighting</title>
		<description><![CDATA[There was a great post here by Yoann. B that provided a great example in C# for highlighting RequireFieldValidators: http://blog.sb2.fr/post/2008/12/12/Custom-TextBox-Required-Field-Validator.aspx I expanded the code to allow for border widths, and converted the code to VB. Here is the usage of the Overload. You must register the custom control on the page, include the &#8220;Assembly&#8221; attribute [...]]]></description>
		<link>http://www.blog.travisgneiting.com/2011/05/25/custom-field-requiredfieldvalidator-highlighting/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=custom-field-requiredfieldvalidator-highlighting</link>
			</item>
</channel>
</rss>

