<?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; webmaster</title>
	<atom:link href="http://jack-fx.com/net/category/webmaster/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>Thu, 24 May 2012 14:08:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>[Google Map API] Find a place, and mark it on google map</title>
		<link>http://jack-fx.com/net/2012/04/16/google-map-api-find-a-place-and-mark-it-on-google-map/</link>
		<comments>http://jack-fx.com/net/2012/04/16/google-map-api-find-a-place-and-mark-it-on-google-map/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 14:34:00 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[webmaster]]></category>
		<category><![CDATA[address]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[api function]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[LatLng]]></category>
		<category><![CDATA[marker]]></category>
		<category><![CDATA[quot]]></category>
		<category><![CDATA[status]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/?p=292</guid>
		<description><![CDATA[In google map API, there is a class google.maps.Geocoder, it&#160; is a service for converting between an address and a LatLng. Demo of using this api: function showAddress(address){ &#160;&#160;&#160; var geocoder = new google.maps.Geocoder(); &#160;&#160;&#160; geocoder.geocode( {&#8216;address&#8217;: ‘your address’}, function(results, status) { &#160;&#160;&#160;&#160;&#160;&#160;&#160; if (status == google.maps.GeocoderStatus.OK) { &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var searchLoc = results[0].geometry.location; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var [...]]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2012/04/16/google-map-api-find-a-place-and-mark-it-on-google-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add html element via javascript</title>
		<link>http://jack-fx.com/net/2012/03/26/add-html-element-via-javascript/</link>
		<comments>http://jack-fx.com/net/2012/03/26/add-html-element-via-javascript/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 12:40:00 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[webmaster]]></category>
		<category><![CDATA[body]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[document body]]></category>
		<category><![CDATA[element]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[script tag]]></category>
		<category><![CDATA[tag type]]></category>
		<category><![CDATA[text javascript]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/?p=285</guid>
		<description><![CDATA[// add an element var fb_foot = document.createElement(&#34;div&#34;); fb_foot.id=&#34;fb-root&#34;; document.body.appendChild(fb_foot); &#160; // import a js file // e.g load facebook javascript var tag = document.createElement(&#8216;script&#8217;); tag.type=&#34;text/javascript&#34;; tag.src = &#8216;http://connect.facebook.net/en_US/all.js&#8217;; document.body.appendChild(tag);]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2012/03/26/add-html-element-via-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML +  CSS to implement a fixed head and fixed bottom style page</title>
		<link>http://jack-fx.com/net/2012/03/01/html-css-to-implement-a-fixed-head-and-fixed-bottom-style-page-2/</link>
		<comments>http://jack-fx.com/net/2012/03/01/html-css-to-implement-a-fixed-head-and-fixed-bottom-style-page-2/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 14:02:00 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[asp.net]]></category>
		<category><![CDATA[webmaster]]></category>
		<category><![CDATA[body]]></category>
		<category><![CDATA[body margin]]></category>
		<category><![CDATA[bottom position]]></category>
		<category><![CDATA[div class]]></category>
		<category><![CDATA[height]]></category>
		<category><![CDATA[html body]]></category>
		<category><![CDATA[html css]]></category>
		<category><![CDATA[position]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2012/03/01/html-css-to-implement-a-fixed-head-and-fixed-bottom-style-page-2/</guid>
		<description><![CDATA[&#60;html&#62; &#60;style type=&#34;text/css&#34;&#62; html,body {height: 100%;} body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } .top,.bottom { position: absolute; width: 100%; left: 0px; height: 10%; background-color: #FFFF22; } .top {top: 0px;} .bottom {bottom: 0px;} .main { background-color: #00FFF0; overflow-y: scroll; position: absolute; top: 10%; bottom: 10%; height: 80%; width: 100%; } &#60;/style&#62; &#60;/head&#62; [...]]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2012/03/01/html-css-to-implement-a-fixed-head-and-fixed-bottom-style-page-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 5 of my favorite free Windows Live Writer (WLW) plugin</title>
		<link>http://jack-fx.com/net/2010/11/04/top-5-of-my-favorite-free-windows-live-writer-wlw-plugin/</link>
		<comments>http://jack-fx.com/net/2010/11/04/top-5-of-my-favorite-free-windows-live-writer-wlw-plugin/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 15:33:50 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[webmaster]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[FaceBook]]></category>
		<category><![CDATA[home page urls]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[smart content]]></category>
		<category><![CDATA[structure web]]></category>
		<category><![CDATA[web syntax]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[WLW]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2010/11/04/top-5-of-my-favorite-free-windows-live-writer-wlw-plugin/</guid>
		<description><![CDATA[I like free one, so I only list top 5 of my favorite ones. Twitter Update: (by Krishnan) Allow you to add up to 3 twitter accounts and tweet according to the blog you post. In the options page enter default Twitter account user name and password, which will be used when there is no [...]]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2010/11/04/top-5-of-my-favorite-free-windows-live-writer-wlw-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online pricing models in ineternet market</title>
		<link>http://jack-fx.com/net/2010/10/01/online-pricing-models-in-ineternet-market/</link>
		<comments>http://jack-fx.com/net/2010/10/01/online-pricing-models-in-ineternet-market/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 13:21:09 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[webmaster]]></category>
		<category><![CDATA[brand marketers]]></category>
		<category><![CDATA[certified public accountants]]></category>
		<category><![CDATA[communist party leadership]]></category>
		<category><![CDATA[Cost]]></category>
		<category><![CDATA[CPM]]></category>
		<category><![CDATA[credit card transaction]]></category>
		<category><![CDATA[membership rewards program]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[pricing]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/?p=138</guid>
		<description><![CDATA[In general, the online advertising market, pricing model three, marketers can use it to buy advertising and potential customers. Cost per thousand impressions (per thousand) pricing model display ads &#8211; that is, when many people are advertising. CPM display advertising pricing model is usually sold. Problem is CPM advertising is the advertiser&#8217;s fees, even if [...]]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2010/10/01/online-pricing-models-in-ineternet-market/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Performance tuning tips for ASP.NET and IIS 7</title>
		<link>http://jack-fx.com/net/2010/09/06/performance-tuning-tips-for-asp-net-and-iis-7/</link>
		<comments>http://jack-fx.com/net/2010/09/06/performance-tuning-tips-for-asp-net-and-iis-7/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 01:51:23 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[webmaster]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[performance issue]]></category>
		<category><![CDATA[scenario results]]></category>
		<category><![CDATA[static file]]></category>
		<category><![CDATA[static files]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[website performance]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/?p=135</guid>
		<description><![CDATA[1. Browser caching In part 1, we looked at how it was possible to set an expiration header to any static file such as JavaScript and CSS files, so the browser would cache them for a long time and thereby optimize both for bandwidth and the number of requested files going from server to browser. [...]]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2010/09/06/performance-tuning-tips-for-asp-net-and-iis-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebMatrix &#8211; Microsoft&#8217;s new web tool</title>
		<link>http://jack-fx.com/net/2010/07/09/webmatrix-microsofts-new-web-tool/</link>
		<comments>http://jack-fx.com/net/2010/07/09/webmatrix-microsofts-new-web-tool/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 10:00:15 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[asp.net]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[webmaster]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[development web server]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[search optimization]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[web development tool]]></category>
		<category><![CDATA[web server asp]]></category>
		<category><![CDATA[webmatrix]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2010/07/09/webmatrix-microsofts-new-web-tool/</guid>
		<description><![CDATA[What Is It? WebMatrix is everything you need to build Web sites using Windows. It includes IIS Developer Express (a development Web server), ASP.NET (a Web framework), and SQL Server Compact (an embedded database). It streamlines Web site development and makes it easy to start Web sites from popular open-source apps. The skills and code [...]]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2010/07/09/webmatrix-microsofts-new-web-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Try Expression Web 4 now</title>
		<link>http://jack-fx.com/net/2010/06/14/try-expression-web-4-now/</link>
		<comments>http://jack-fx.com/net/2010/06/14/try-expression-web-4-now/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 07:31:01 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[webmaster]]></category>
		<category><![CDATA[aede]]></category>
		<category><![CDATA[amp design]]></category>
		<category><![CDATA[design surface]]></category>
		<category><![CDATA[Expression]]></category>
		<category><![CDATA[microsoft expression web]]></category>
		<category><![CDATA[rich graphics]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SuperPreview]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://jack-fx.com/net/2010/06/14/try-expression-web-4-now/</guid>
		<description><![CDATA[Microsoft Expression Web 4 is a professional development and design tool to create modern, standards-based Web sites that use PHP, HTML/XHTML, CSS, JavaScript, ASP.NET or ASP.NET AJAX. The highlight including: Create standards-based Web sites faster &#38; easier Professional code editor &#38; design surface Make your site stand out with rich graphics support Work with leading [...]]]></description>
		<wfw:commentRss>http://jack-fx.com/net/2010/06/14/try-expression-web-4-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

