<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress.com" -->
<rss version="0.92">
<channel>
	<title>Tipsy little box</title>
	<link>http://evacion.wordpress.com</link>
	<description>Just another weblog</description>
	<lastBuildDate>Mon, 14 Dec 2009 11:06:12 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>SQL Server XML Function exist()</title>
		<description><![CDATA[  07.DECLARE @xml XML 
     08.DECLARE @id SMALLINT
     09.DECLARE @value VARCHAR(20) 
     10.  
     11.SET @xml= 
     12.' 
     13.&#60;ninjaElement id="1"&#62;SQL Server Ninja&#60;/ninjaElement&#62; 
     14.&#60;ninjaElement id="2"&#62;SharePoint Ninja&#60;/ninjaElement&#62; 
     15.&#60;ninjaElement id="3"&#62;ASP.NET Ninja&#60;/ninjaElement&#62; 
     16.'
     17.  
     18.-- this is what we will look for 
     19.SET @id    = 2 
     20.SET @value ='SQL Server Ninja'
     21.  
     22.-- note exist() will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evacion.wordpress.com&blog=4565037&post=894&subd=evacion&ref=&feed=1" />]]></description>
		<link>http://evacion.wordpress.com/2009/12/14/sql-server-xml-function-exist/</link>
			</item>
	<item>
		<title>How to cache in ASP.NET</title>
		<description><![CDATA[SUMMARY
This step-by-step article describes how to control the caching of Web pages and data objects in ASP.NET. When you cache Web pages, you avoid re-creating information when you make a later request. Caching is an important technique for building high performance and scalable server applications. When you make the first request for the page, you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evacion.wordpress.com&blog=4565037&post=884&subd=evacion&ref=&feed=1" />]]></description>
		<link>http://evacion.wordpress.com/2009/11/12/how-to-cache-in-asp-net/</link>
			</item>
	<item>
		<title>Understanding ASP.NET Dynamic Compilation</title>
		<description><![CDATA[In order for your Web application to service requests, ASP.NET must first parse and compile the code of your Web application into one or more assemblies. When the code is compiled, it is translated into a language-independent and CPU-independent representation called Microsoft Intermediate Language (MSIL). At run time, MSIL runs in the context of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evacion.wordpress.com&blog=4565037&post=881&subd=evacion&ref=&feed=1" />]]></description>
		<link>http://evacion.wordpress.com/2009/11/11/understanding-asp-net-dynamic-compilation/</link>
			</item>
	<item>
		<title>Compile-time vs run-time</title>
		<description><![CDATA[The difference between compile time and run time is an example of what pointy-headed theorists call the phase distinction. It is one of the hardest concepts to learn, especially for people without much background in programming languages. To approach this problem, I find it helpful to ask

What invariants does the program satisfy? 
What can go [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evacion.wordpress.com&blog=4565037&post=879&subd=evacion&ref=&feed=1" />]]></description>
		<link>http://evacion.wordpress.com/2009/11/11/compile-time-vs-run-time/</link>
			</item>
	<item>
		<title>Importing Data From Excel with C#</title>
		<description><![CDATA[The following code block accepts an Excel file path and returns an ordinary DataTable object, which can be manipulated easily by the code that calls this method. The first row of the Excel document becomes the columns in the DataTable object and each row thereafter are DataRow objects.

If you like, take a look at both [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evacion.wordpress.com&blog=4565037&post=877&subd=evacion&ref=&feed=1" />]]></description>
		<link>http://evacion.wordpress.com/2009/09/30/importing-data-from-excel-with-c/</link>
			</item>
	<item>
		<title>Delegates and Events in C# / .NET</title>
		<description><![CDATA[Delegates 
A delegate in C# is similar to a function pointer in C or C++. Using a delegate allows the programmer to encapsulate a reference to a method inside a delegate object. The delegate object can then be passed to code which can call the referenced method, without having to know at compile time which [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evacion.wordpress.com&blog=4565037&post=858&subd=evacion&ref=&feed=1" />]]></description>
		<link>http://evacion.wordpress.com/2009/09/16/delegates-and-events-in-c-net/</link>
			</item>
	<item>
		<title>Cross-Page Postbacks in ASP.NET 2.0</title>
		<description><![CDATA[By default, an ASP.NET web form posts back to itself whenever a postback operation occurs. That behavior wasn&#8217;t terribly common in web pages before ASP.NET appeared, and isn&#8217;t always what you want to have happen: What if you want to post a web form to another web page in the application? ASP.NET made that fairly [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evacion.wordpress.com&blog=4565037&post=850&subd=evacion&ref=&feed=1" />]]></description>
		<link>http://evacion.wordpress.com/2009/09/16/cross-page-postbacks-in-asp-net-2-0/</link>
			</item>
	<item>
		<title>C# Heap(ing) Vs Stack(ing) in .NET</title>
		<description><![CDATA[Interesting article about heap, stack and Garbage Collector can be found here: http://www.c-sharpcorner.com/UploadFile/rmcochran/csharp_memory01122006130034PM/csharp_memory.aspx
Other source: Top 20 .NET Garbage Collection (GC) Articles
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evacion.wordpress.com&blog=4565037&post=847&subd=evacion&ref=&feed=1" />]]></description>
		<link>http://evacion.wordpress.com/2009/08/20/c-heaping-vs-stacking-in-net/</link>
			</item>
	<item>
		<title>POST-Redirect-GET Pattern</title>
		<description><![CDATA[HTTP supports several methods that define the nature of the current request. The two most important ones are GET and POST. GET is the primary method to get content (so called entities) from the server such as HTML pages, images, CSS style sheets etc. The POST method on the other hand is meant to transport [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evacion.wordpress.com&blog=4565037&post=838&subd=evacion&ref=&feed=1" />]]></description>
		<link>http://evacion.wordpress.com/2009/08/18/post-redirect-get-pattern/</link>
			</item>
	<item>
		<title>Why does C# have both &#8216;ref&#8217; and &#8216;out&#8217;?</title>
		<description><![CDATA[Ref and out parameter passing modes are used to allow a method to alter variables passed in by the caller. The difference between ref and out is subtle but important. Each parameter passing mode is designed to apply to a slightly different programming scenario. The important difference between out and ref parameters is the definite [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evacion.wordpress.com&blog=4565037&post=834&subd=evacion&ref=&feed=1" />]]></description>
		<link>http://evacion.wordpress.com/2009/08/12/why-does-c-have-both-ref-and-out/</link>
			</item>
</channel>
</rss>
