<?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; asp.net</title>
	<atom:link href="http://jack-fx.com/net/category/asp-net/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>asp.net error: Operation is not valid due to the current state of the object</title>
		<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>
		<comments>http://jack-fx.com/net/2012/01/16/asp-net-error-operation-is-not-valid-due-to-the-current-state-of-the-object/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 12:07:00 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[asp.net]]></category>
		<category><![CDATA[application path]]></category>
		<category><![CDATA[Exception]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[keys files]]></category>
		<category><![CDATA[lt machine]]></category>
		<category><![CDATA[Message]]></category>
		<category><![CDATA[vdir]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2012/01/16/asp-net-error-operation-is-not-valid-due-to-the-current-state-of-the-object/</guid>
		<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>
		<wfw:commentRss>http://jack-fx.com/net/2012/01/16/asp-net-error-operation-is-not-valid-due-to-the-current-state-of-the-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting an aspnet.config File per Application Pool</title>
		<link>http://jack-fx.com/net/2011/12/19/setting-an-aspnet-config-file-per-application-pool/</link>
		<comments>http://jack-fx.com/net/2011/12/19/setting-an-aspnet-config-file-per-application-pool/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 12:47:00 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[asp.net]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[application pool]]></category>
		<category><![CDATA[aspnet]]></category>
		<category><![CDATA[lt xml]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[pool need]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[windows microsoft]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2011/12/19/setting-an-aspnet-config-file-per-application-pool/</guid>
		<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>
		<wfw:commentRss>http://jack-fx.com/net/2011/12/19/setting-an-aspnet-config-file-per-application-pool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manage a checkbox via jQuery</title>
		<link>http://jack-fx.com/net/2011/12/06/manage-a-checkbox-via-jquery/</link>
		<comments>http://jack-fx.com/net/2011/12/06/manage-a-checkbox-via-jquery/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 12:55:00 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[asp.net]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[checkbox]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[input]]></category>
		<category><![CDATA[input type]]></category>
		<category><![CDATA[lt]]></category>
		<category><![CDATA[Manage]]></category>
		<category><![CDATA[myCheckboxEvent]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2011/12/06/manage-a-checkbox-via-jquery/</guid>
		<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>
		<wfw:commentRss>http://jack-fx.com/net/2011/12/06/manage-a-checkbox-via-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add NHibernate Configuration in web.config, and reuse an existing connectionstring</title>
		<link>http://jack-fx.com/net/2011/11/24/add-nhibernate-configuration-in-web-config-and-reuse-an-existing-connectionstring/</link>
		<comments>http://jack-fx.com/net/2011/11/24/add-nhibernate-configuration-in-web-config-and-reuse-an-existing-connectionstring/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 13:55:00 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[asp.net]]></category>
		<category><![CDATA[connection]]></category>
		<category><![CDATA[connection provider]]></category>
		<category><![CDATA[connection string]]></category>
		<category><![CDATA[connectionstring]]></category>
		<category><![CDATA[factory gt]]></category>
		<category><![CDATA[gt 5]]></category>
		<category><![CDATA[Name]]></category>
		<category><![CDATA[NHibernate]]></category>
		<category><![CDATA[reuse]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2011/11/24/add-nhibernate-configuration-in-web-config-and-reuse-an-existing-connectionstring/</guid>
		<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>
		<wfw:commentRss>http://jack-fx.com/net/2011/11/24/add-nhibernate-configuration-in-web-config-and-reuse-an-existing-connectionstring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML vs XHTML</title>
		<link>http://jack-fx.com/net/2011/11/14/html-vs-xhtml/</link>
		<comments>http://jack-fx.com/net/2011/11/14/html-vs-xhtml/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 01:36:54 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[asp.net]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[css specifications]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[internet media type]]></category>
		<category><![CDATA[legacy web]]></category>
		<category><![CDATA[syntax]]></category>
		<category><![CDATA[syntax errors]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[xml processor]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2011/11/14/html-vs-xhtml/</guid>
		<description><![CDATA[HTML syntax is the format suggested for most authors. It is compatible with most legacy Web browsers. If a document is transmitted with an HTML MIME type, such as text/html, then it will be processed as an HTML document by Web browsers. This specification defines version 5 of the HTML syntax, known as &#8220;HTML5&#8243;. XHTML [...]]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2011/11/14/html-vs-xhtml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery script to scroll to the top of window</title>
		<link>http://jack-fx.com/net/2011/11/01/jquery-script-to-scroll-to-the-top-of-window/</link>
		<comments>http://jack-fx.com/net/2011/11/01/jquery-script-to-scroll-to-the-top-of-window/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 20:46:57 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[asp.net]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[animate]]></category>
		<category><![CDATA[body]]></category>
		<category><![CDATA[scroll]]></category>
		<category><![CDATA[window]]></category>
		<category><![CDATA[window html]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/?p=252</guid>
		<description><![CDATA[$('html, body').animate({ scrollTop: 0 }, 'slow');]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2011/11/01/jquery-script-to-scroll-to-the-top-of-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>
	</channel>
</rss>

