<?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>Jack @ ASP.NET &#187; C#</title>
	<atom:link href="http://jack-fx.com/net/category/c/feed/" rel="self" type="application/rss+xml" />
	<link>http://jack-fx.com/net</link>
	<description>As a software developer, I still Focus on .NET, internet, asp.net, C# and so on. I</description>
	<lastBuildDate>Wed, 01 Feb 2012 14:47:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Call web service via jQuery in asp.net</title>
		<link>http://jack-fx.com/net/2011/10/10/call-web-service-via-jquery-in-asp-net-2/</link>
		<comments>http://jack-fx.com/net/2011/10/10/call-web-service-via-jquery-in-asp-net-2/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 14:00:03 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[asmx]]></category>
		<category><![CDATA[quot 15]]></category>
		<category><![CDATA[quot quot]]></category>
		<category><![CDATA[script services]]></category>
		<category><![CDATA[web script]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2011/10/10/call-web-service-via-jquery-in-asp-net-2/</guid>
		<description><![CDATA[step 1. Add Web service, and you must add a [System.Web.Script.Services.ScriptService] to the service class (in webservice.asmx.cs file) 1: /// &#60;summary&#62; 2: /// Summary description for WebService1 3: /// &#60;/summary&#62; 4: [WebService(Namespace = &#34;http://tempuri.org/&#34;)] 5: [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] 6: [System.ComponentModel.ToolboxItem(false)] 7: // To allow this Web Service to be called from script, using ASP.NET AJAX, [...]]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2011/10/10/call-web-service-via-jquery-in-asp-net-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use HttpRuntime.Cache to call asp.net Cache</title>
		<link>http://jack-fx.com/net/2011/09/26/use-httpruntime-cache-to-call-asp-net-cache/</link>
		<comments>http://jack-fx.com/net/2011/09/26/use-httpruntime-cache-to-call-asp-net-cache/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 12:37:00 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[HttpContext]]></category>
		<category><![CDATA[HttpRuntime]]></category>
		<category><![CDATA[scenario]]></category>
		<category><![CDATA[Test]]></category>
		<category><![CDATA[test mode]]></category>
		<category><![CDATA[unit test]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2011/09/26/use-httpruntime-cache-to-call-asp-net-cache/</guid>
		<description><![CDATA[In some scenario, you can&#8217;t visit asp.net cache, even via HttpContext.Current.Cache. For example, in Unit Test mode. In this case, you can use the HttpRuntime.Cache to access asp.net Cache.]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2011/09/26/use-httpruntime-cache-to-call-asp-net-cache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entity Framework Code First</title>
		<link>http://jack-fx.com/net/2011/09/22/entity-framework-code-first/</link>
		<comments>http://jack-fx.com/net/2011/09/22/entity-framework-code-first/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 12:42:00 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[code api]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[fluent code]]></category>
		<category><![CDATA[framework code]]></category>
		<category><![CDATA[functionality]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[model diagram]]></category>
		<category><![CDATA[model objects]]></category>
		<category><![CDATA[persistence]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2011/09/22/entity-framework-code-first/</guid>
		<description><![CDATA[The “EF Code-First” functionality provides a pretty nice code-centric way to work with data. Advantage ·         Develop without ever having to open a designer or define an XML mapping file, and start from a class ·         Define your model objects by simply writing “plain old classes” with no base classes required ·         Use a “convention [...]]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2011/09/22/entity-framework-code-first/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Static VS Dynamic Resources in WPF</title>
		<link>http://jack-fx.com/net/2011/07/26/static-vs-dynamic-resources-in-wpf/</link>
		<comments>http://jack-fx.com/net/2011/07/26/static-vs-dynamic-resources-in-wpf/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 00:22:48 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[application functionality]]></category>
		<category><![CDATA[dictiona]]></category>
		<category><![CDATA[dynamic resources]]></category>
		<category><![CDATA[Expression]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[resource reference]]></category>
		<category><![CDATA[static resource]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/?p=216</guid>
		<description><![CDATA[In WPF A resource can be referenced as either a static resource or a dynamic resource. This is done by using either the StaticResource Markup Extension or the DynamicResource Markup Extension. A markup extension is a feature of XAML whereby you can specify an object reference by having the markup extension process the attribute string [...]]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2011/07/26/static-vs-dynamic-resources-in-wpf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Routed Events in WPF</title>
		<link>http://jack-fx.com/net/2011/07/04/routed-events-in-wpf/</link>
		<comments>http://jack-fx.com/net/2011/07/04/routed-events-in-wpf/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 12:37:00 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[element]]></category>
		<category><![CDATA[element tree]]></category>
		<category><![CDATA[implementation perspective]]></category>
		<category><![CDATA[root element]]></category>
		<category><![CDATA[runtime model]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[source element]]></category>
		<category><![CDATA[tree]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2011/07/04/routed-events-in-wpf/</guid>
		<description><![CDATA[When you are first getting started with WPF, you will likely use routed events without even knowing you are using them. For example, if you add a button to your window in the Visual Studio® designer and name it myButton and then double-click on it, the Click event will get hooked up in your XAML [...]]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2011/07/04/routed-events-in-wpf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MVVM in WPF</title>
		<link>http://jack-fx.com/net/2011/06/19/mvvm-in-wpf/</link>
		<comments>http://jack-fx.com/net/2011/06/19/mvvm-in-wpf/#comments</comments>
		<pubDate>Sun, 19 Jun 2011 07:23:35 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[data validation]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[presentation logic]]></category>
		<category><![CDATA[validation]]></category>
		<category><![CDATA[validation rules]]></category>
		<category><![CDATA[value converters]]></category>
		<category><![CDATA[visual behavior]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2011/06/19/mvvm-in-wpf/</guid>
		<description><![CDATA[Key characteristics of VIEW ? The view is a visual element, such as a window, page, user control, or data template. The view defines the controls contained in the view and their visual layout and styling. ? The view references the view model through its DataContext property. The controls in the view are data bound [...]]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2011/06/19/mvvm-in-wpf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# code snippet to get a screenshot of a process</title>
		<link>http://jack-fx.com/net/2011/06/13/c-code-snippet-to-get-a-screenshot-of-a-process/</link>
		<comments>http://jack-fx.com/net/2011/06/13/c-code-snippet-to-get-a-screenshot-of-a-process/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 14:24:40 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[bmp]]></category>
		<category><![CDATA[bool]]></category>
		<category><![CDATA[hhmmss]]></category>
		<category><![CDATA[int width]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[string format]]></category>
		<category><![CDATA[system diagnostics]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[text directory]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2011/06/13/c-code-snippet-to-get-a-screenshot-of-a-process/</guid>
		<description><![CDATA[A small code snippet to get a screenshot of a process Screenshot of this application. Code behinds using System; using System.Diagnostics; using System.Drawing; using System.Drawing.Imaging; using System.IO; using System.Runtime.InteropServices; using System.Windows.Forms; namespace ProcessScreenshot { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnTake_Click(object sender, EventArgs e) { Process[] ps [...]]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2011/06/13/c-code-snippet-to-get-a-screenshot-of-a-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prism Design Goals</title>
		<link>http://jack-fx.com/net/2011/05/17/prism-design-goals/</link>
		<comments>http://jack-fx.com/net/2011/05/17/prism-design-goals/#comments</comments>
		<pubDate>Tue, 17 May 2011 00:58:50 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[application level]]></category>
		<category><![CDATA[common services]]></category>
		<category><![CDATA[component level]]></category>
		<category><![CDATA[flexible applications]]></category>
		<category><![CDATA[library implements]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2011/05/17/prism-design-goals/</guid>
		<description><![CDATA[Prism was designed to help you design and build rich, flexible, and easy-to-maintain WPF and Silverlight applications. The Prism Library implements design patterns that embody important architectural design principles, such as separation of concerns and loose coupling. Using the design patterns and capabilities provided by the Prism Library, you can design and build applications using [...]]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2011/05/17/prism-design-goals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

