<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Jack @ ASP.NET</title>
	<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>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2.1" -->

	<item>
		<title>View Resolver in Spring MVC</title>
		<description><![CDATA[View resolver is used to resolve “view name” that returned from the controller class to a physical view page or JSP page. 1. InternalResourceViewResolver InternalResourceViewResolver is used to resolve “internal resource view” (in simple, it’s final output, jsp or htmp page) based on a predefined URL pattern. In additional, it allow you to add some [...]]]></description>
		<link>http://jack-fx.com/net/2012/02/01/view-resolver-in-spring-mvc/</link>
			</item>
	<item>
		<title>asp.net error: Operation is not valid due to the current state of the object</title>
		<description><![CDATA[ASP.NET requests that have lots of form keys, files, or JSON payload receive an error response from the server. The Application log on the server has a Warning entry with a Source that is a specific version of ASP.NET, and an Event ID of 1309. The event log contains one of the following messages: Message [...]]]></description>
		<link>http://jack-fx.com/net/2012/01/16/asp-net-error-operation-is-not-valid-due-to-the-current-state-of-the-object/</link>
			</item>
	<item>
		<title>Random in Java</title>
		<description><![CDATA[Random in Java: public Random() It will create a new random number generator. Its seed is initialized to a value based on the current time: public Random() { this(System.currentTimeMillis()); } Based on this, two Random objects created within the same millisecond will have the same sequence of random numbers.]]></description>
		<link>http://jack-fx.com/net/2012/01/12/random-in-java/</link>
			</item>
	<item>
		<title>Tips for working with template inheritance in Django</title>
		<description><![CDATA[If you use {% extends %} in a template, it must be the first template tag in that template. Template inheritance won’t work, otherwise. More {% block %} tags in your base templates are better. Remember, child templates don’t have to define all parent blocks, so you can fill in reasonable defaults in a number [...]]]></description>
		<link>http://jack-fx.com/net/2012/01/08/tips-for-working-with-template-inheritance-in-django/</link>
			</item>
	<item>
		<title>Duplicate Code</title>
		<description><![CDATA[Duplicate code, sometimes referred to as clones, is a cluster of code blocks that are functionally equivalent (or nearly equivalent) spanning across two or more locations within a solution. Duplicate code is expensive to maintain because: Multiplied bugs. A bug in one clone means there’s a bug in all the copies. This can lead to [...]]]></description>
		<link>http://jack-fx.com/net/2011/12/19/duplicate-code/</link>
			</item>
	<item>
		<title>Setting an aspnet.config File per Application Pool</title>
		<description><![CDATA[The aspnet.config file is a little known config file which is supported by ASP.NET 2.0 and greater.&#160; Generally it lives in the root of the framework folder, for example: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet.config C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet.config C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet.config C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet.config This config file is further leveraged in ASP.NET 4.0 for concurrency and threading.&#160; For example, you can set maxConcurrentRequestsPerCPU, maxConcurrentThreadsPerCPU and requestQueueLimit, [...]]]></description>
		<link>http://jack-fx.com/net/2011/12/19/setting-an-aspnet-config-file-per-application-pool/</link>
			</item>
	<item>
		<title>Manage a checkbox via jQuery</title>
		<description><![CDATA[the checkBox in html should be &#60;input type=&#34;checkbox&#34; class=&#34;myCheckBox&#34; /&#62; Bind a click event to a checkbox $(&#34;.myCheckBox&#34;).click(myCheckboxEvent); The click event like this function myCheckboxEvent() { alert($(this).is(':checked')); // alert the checked value } You can see, it is quite easy to ‘get’ the checkbox sender via jQuery -‘this’]]></description>
		<link>http://jack-fx.com/net/2011/12/06/manage-a-checkbox-via-jquery/</link>
			</item>
	<item>
		<title>Add NHibernate Configuration in web.config, and reuse an existing connectionstring</title>
		<description><![CDATA[When we use nHibernate in asp.net, most time we use a nhibernate.cfg.xml to define the database connection. And for some scenarioes, we may also have a database connection defined in web.config. So, there might be 2 definitions for the same database. Here is the way to combine the 2 definitions and in web.config. in web.config [...]]]></description>
		<link>http://jack-fx.com/net/2011/11/24/add-nhibernate-configuration-in-web-config-and-reuse-an-existing-connectionstring/</link>
			</item>
</channel>
</rss>

