<?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 &#187; ASP.NET</title>
	<atom:link href="http://www.blog.travisgneiting.com/tag/aspnet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blog.travisgneiting.com</link>
	<description></description>
	<lastBuildDate>Mon, 30 Jan 2012 03:45:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	
	
	<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
	<div  style="padding:7px; float: right; padding-right: 0; margin: 3px;"><!-- Ad number: 1 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-3961093531196233"; google_alternate_color = "FFFFFF";
		google_ad_width = 300; google_ad_height = 250;
		google_ad_format = "300x250_as"; google_ad_type = "text_image";
		google_ad_channel ="1685894941"; google_color_border = "336699";
		google_color_link = "0000FF"; google_color_bg = "FFFFFF";
		google_color_text = "000000"; google_color_url = "008000";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>Microsoft Project Code Name Velocity</title>
		<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>
		<comments>http://www.blog.travisgneiting.com/2011/11/01/microsoft-project-code-name-velocity/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 16:52:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Caching]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Velocity]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=14</guid>
		<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>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p class="MsoNormal">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.</p>
<p class="MsoNormal">The main application for providing scalable, available, high-performance applications using Velocity is by fusing the memory between multiple computers to give a single/unified cache view for the application to employ.The application can they store any CLR object that is serializable.</p>
<p class="MsoNormal"><a href="http://blogs.msdn.com/velocity/">http://blogs.msdn.com/velocity/</a></p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2011/11/01/microsoft-project-code-name-velocity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebMethods For Use With Visual Studio and AJAX</title>
		<link>http://www.blog.travisgneiting.com/2009/01/05/webmethods-for-use-with-visual-studio-and-ajax/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=webmethods-for-use-with-visual-studio-and-ajax</link>
		<comments>http://www.blog.travisgneiting.com/2009/01/05/webmethods-for-use-with-visual-studio-and-ajax/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 20:48:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[webmethod]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=20</guid>
		<description><![CDATA[The webmethod tag is an attribute added to a Public methods to indicate the method should be exposed as part of an XML Web service.  Below is an example of applying the WebMethod attribute. &#60;WebMethod()&#62; _ Public Shared Function FunctionName(ByVal Parameter As String) As ObjectName Dim ObjectName As Object = Object Return ObjectName End Function [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>The webmethod tag is an attribute added to a Public methods to indicate the method should be exposed as part of an XML Web service.  Below is an example of applying the WebMethod attribute.</p>
<p><code><br />
&lt;WebMethod()&gt; _<br />
Public Shared Function FunctionName(ByVal Parameter As String) As ObjectName<br />
Dim ObjectName As Object = Object<br />
Return ObjectName<br />
End Function</code></p>
<p>The Web method can now be called via javascript on the client. Below is an example of calling the webmethod from the client.<br />
<code><br />
PageMethods.FunctionName(Parameter1, onComplete, OnTimeOut, onError);</code></p>
<p>Here is a great link with additional information for web methods:</p>
<p><a href="http://www.novologies.com/post/2009/05/06/Cleaner-Faster-Ajax-in-ASPNET.aspx">http://www.novologies.com/post/2009/05/06/Cleaner-Faster-Ajax-in-ASPNET.aspx</a></p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2009/01/05/webmethods-for-use-with-visual-studio-and-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery Show Hide Div Example Tutorial</title>
		<link>http://www.blog.travisgneiting.com/2008/11/06/jquery-show-hide-div-example-tutorial/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-show-hide-div-example-tutorial</link>
		<comments>http://www.blog.travisgneiting.com/2008/11/06/jquery-show-hide-div-example-tutorial/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 16:14:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=18</guid>
		<description><![CDATA[&#60;script type=&#8221;text/javascript&#8221; language=&#8221;javascript&#8221;&#62; &#60;!&#8211; $(document).ready(function(){ $(&#8216;#btnAddNew&#8217;).click(function(){ var isVisible = $(&#8216;#divNew&#8217;).is(&#8216;:visible&#8217;); if (isVisible == false){ $(&#8220;#divNew&#8221;).animate({ height: &#8216;show&#8217;, opacity: &#8216;show&#8217; }, &#8216;fast&#8217;); } else{ $(&#8220;#divNew&#8221;).animate({ height: &#8216;hide&#8217;, opacity: &#8216;hide&#8217; }, &#8216;fast&#8217;); } return false; }); }); &#8211;&#62; &#60;/script&#62;]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>&lt;script type=&#8221;text/javascript&#8221; language=&#8221;javascript&#8221;&gt;<br />
&lt;!&#8211;</p>
<p>$(document).ready(function(){</p>
<p>$(&#8216;#btnAddNew&#8217;).click(function(){<br />
var isVisible = $(&#8216;#divNew&#8217;).is(&#8216;:visible&#8217;);<br />
if (isVisible == false){<br />
$(&#8220;#divNew&#8221;).animate({ height: &#8216;show&#8217;, opacity: &#8216;show&#8217; }, &#8216;fast&#8217;);<br />
} else{<br />
$(&#8220;#divNew&#8221;).animate({ height: &#8216;hide&#8217;, opacity: &#8216;hide&#8217; }, &#8216;fast&#8217;);<br />
}<br />
return false;<br />
});<br />
});</p>
<p>&#8211;&gt;<br />
&lt;/script&gt;</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2008/11/06/jquery-show-hide-div-example-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	
	
	<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
	<div  style="padding:7px; float: left; padding-left: 0px; margin: 3px;"><!-- Ad number: 2 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-3961093531196233"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel ="1685894941"; google_color_border = "E3FA11";
		google_color_link = "FFFFFF"; google_color_bg = "A2AB2B";
		google_color_text = "000000"; google_color_url = "FFFFFF";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>Microsoft Project Code Name “Velocity”</title>
		<link>http://www.blog.travisgneiting.com/2008/09/25/microsoft-project-code-name-%e2%80%9cvelocity%e2%80%9d/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=microsoft-project-code-name-%25e2%2580%259cvelocity%25e2%2580%259d</link>
		<comments>http://www.blog.travisgneiting.com/2008/09/25/microsoft-project-code-name-%e2%80%9cvelocity%e2%80%9d/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 13:00:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Software Engineering]]></category>
		<category><![CDATA[Velocity]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=15</guid>
		<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>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>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.</p>
<p class="MsoNormal">
<p class="MsoNormal">The main application for providing scalable, available, high-performance applications using Velocity is by fusing the memory between multiple computers to give a single/unified cache view for the application to employ.<span> </span>The application can they store any CLR object that is serializable.</p>
<p class="MsoNormal">
<p class="MsoNormal"><a href="http://blogs.msdn.com/velocity/">http://blogs.msdn.com/velocity/</a></p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2008/09/25/microsoft-project-code-name-%e2%80%9cvelocity%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A better way to get a querystring</title>
		<link>http://www.blog.travisgneiting.com/2008/08/01/a-better-way-to-get-a-querystring/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-better-way-to-get-a-querystring</link>
		<comments>http://www.blog.travisgneiting.com/2008/08/01/a-better-way-to-get-a-querystring/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 19:04:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Patterns & Practices]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[querystring]]></category>

		<guid isPermaLink="false">http://www.blog.travisgneiting.com/?p=13</guid>
		<description><![CDATA[If (Not String.IsNullOrEmpty(Request.QueryString(&#34;qString&#34;))) Then qString = Request.QueryString(&#34;qString&#34;) End if]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><code>
<pre class="brush: vb.net">If (Not String.IsNullOrEmpty(Request.QueryString(&quot;qString&quot;))) Then qString = Request.QueryString(&quot;qString&quot;)
End if</pre>
<p></code></p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.blog.travisgneiting.com/2008/08/01/a-better-way-to-get-a-querystring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

