<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>jinath Blog</title>
	<atom:link href="http://jinath.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jinath.wordpress.com</link>
	<description>Live for Others</description>
	<lastBuildDate>Tue, 24 Jan 2012 18:58:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jinath.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>jinath Blog</title>
		<link>http://jinath.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jinath.wordpress.com/osd.xml" title="jinath Blog" />
	<atom:link rel='hub' href='http://jinath.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Page_LoadComplete not calling from User Control</title>
		<link>http://jinath.wordpress.com/2012/01/18/page_loadcomplete-not-calling-from-user-control/</link>
		<comments>http://jinath.wordpress.com/2012/01/18/page_loadcomplete-not-calling-from-user-control/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 10:22:48 +0000</pubDate>
		<dc:creator>jinath</dc:creator>
				<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://jinath.wordpress.com/?p=793</guid>
		<description><![CDATA[If you add Page_LoadComplete method to a user control it’s not getting called like Page_load or Page_init. For this what you can do is call the main page’s Page_LoadComplete event from user control. Add an event handler for LoadComplete event in the user control’s page init protected void Page_Init(object sender, EventArgs e) { this.Page.LoadComplete += [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=793&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you add Page_LoadComplete method to a user control it’s not getting called like Page_load or Page_init. For this what you can do is call the main page’s Page_LoadComplete event from user control. Add an event handler for LoadComplete event in the user control’s page init</p>
<p>protected void Page_Init(object sender, EventArgs e)<br />
{<br />
this.Page.LoadComplete += new EventHandler(Page_LoadComplete)<br />
}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jinath.wordpress.com/793/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jinath.wordpress.com/793/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jinath.wordpress.com/793/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jinath.wordpress.com/793/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jinath.wordpress.com/793/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jinath.wordpress.com/793/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jinath.wordpress.com/793/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jinath.wordpress.com/793/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jinath.wordpress.com/793/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jinath.wordpress.com/793/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jinath.wordpress.com/793/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jinath.wordpress.com/793/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jinath.wordpress.com/793/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jinath.wordpress.com/793/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=793&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jinath.wordpress.com/2012/01/18/page_loadcomplete-not-calling-from-user-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/252c8a21effa5cc07e87503c0623648a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jinath</media:title>
		</media:content>
	</item>
		<item>
		<title>ModalPopupExtender, User Control And Button PostBack</title>
		<link>http://jinath.wordpress.com/2012/01/11/modalpopupextender-user-control-and-button-postback/</link>
		<comments>http://jinath.wordpress.com/2012/01/11/modalpopupextender-user-control-and-button-postback/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 10:31:59 +0000</pubDate>
		<dc:creator>jinath</dc:creator>
				<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://jinath.wordpress.com/?p=789</guid>
		<description><![CDATA[I spent some time today to figure out why, a button on a page didn’t not postback after clicking on it. The scenario is like this, I have a user control and it’s been calling from the ModalPopupExtender based on some logic, but not always. And I have another button for some other function in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=789&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I spent some time today to figure out why, a button on a page didn’t not postback after clicking on it.</p>
<p>The scenario is like this,</p>
<p>I have a user control and it’s been calling from the ModalPopupExtender based on some logic, but not always. And I have another button for some other function in the page. But this button didn’t cause postback even the ModalPopupExtender was in hide mode. Later on I figured out the reason.</p>
<p>The reason was the use control which was calling from ModalPopupExtender had some validation controls. so even the ModalPopupExtender was in hide mode still it was causing the validations. So I set CausesValidation=&#8221;false&#8221; on my button and then the postback started working.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jinath.wordpress.com/789/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jinath.wordpress.com/789/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jinath.wordpress.com/789/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jinath.wordpress.com/789/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jinath.wordpress.com/789/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jinath.wordpress.com/789/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jinath.wordpress.com/789/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jinath.wordpress.com/789/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jinath.wordpress.com/789/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jinath.wordpress.com/789/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jinath.wordpress.com/789/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jinath.wordpress.com/789/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jinath.wordpress.com/789/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jinath.wordpress.com/789/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=789&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jinath.wordpress.com/2012/01/11/modalpopupextender-user-control-and-button-postback/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/252c8a21effa5cc07e87503c0623648a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jinath</media:title>
		</media:content>
	</item>
		<item>
		<title>New job and MVP for 8th consecutive time</title>
		<link>http://jinath.wordpress.com/2012/01/01/new-job-and-mvp-for-8th-consecutive-time/</link>
		<comments>http://jinath.wordpress.com/2012/01/01/new-job-and-mvp-for-8th-consecutive-time/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 15:47:41 +0000</pubDate>
		<dc:creator>jinath</dc:creator>
				<category><![CDATA[asp.net]]></category>
		<category><![CDATA[MVP]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://jinath.wordpress.com/?p=786</guid>
		<description><![CDATA[First if all happy new year to all.. 2011 was an eventful  year. Got married and moved to Dubai .last December I moved to a new job. after working as a lead.Net developer for veripark for almost 1year then I joined with dominateRFID as a Software Development Manager. Looking forward to the challenge and fun [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=786&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First if all happy new year to all.. 2011 was an eventful  year. Got married and moved to Dubai .last December I moved to a new job. after working as a lead.Net developer for veripark for almost 1year then I joined with <a href="http://www.dominaterfid.com" target="_blank">dominateRFID</a> as a Software Development Manager. Looking forward to the challenge and fun with this new opportunity.</p>
<p>Just few minutes ago I received the mail from Microsoft, stating that I have been awarded as Microsoft MVP for ASP.NET/IIS. Well since I moved to UAE, there wasn’t any major activities I could do offline as I was doing with Sri lanka .NET User Group, but I started on developing a community portal with Microsoft gulf. Still this is under development. Any way looking forward for more active and exciting year.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jinath.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jinath.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jinath.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jinath.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jinath.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jinath.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jinath.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jinath.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jinath.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jinath.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jinath.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jinath.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jinath.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jinath.wordpress.com/786/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=786&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jinath.wordpress.com/2012/01/01/new-job-and-mvp-for-8th-consecutive-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/252c8a21effa5cc07e87503c0623648a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jinath</media:title>
		</media:content>
	</item>
		<item>
		<title>Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive &#8211; Page Rendering Error</title>
		<link>http://jinath.wordpress.com/2011/12/27/session-state-can-only-be-used-when-enablesessionstate-is-set-to-true-either-in-a-configuration-file-or-in-the-page-directive-page-rendering-error/</link>
		<comments>http://jinath.wordpress.com/2011/12/27/session-state-can-only-be-used-when-enablesessionstate-is-set-to-true-either-in-a-configuration-file-or-in-the-page-directive-page-rendering-error/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 12:38:42 +0000</pubDate>
		<dc:creator>jinath</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://jinath.wordpress.com/?p=783</guid>
		<description><![CDATA[In my web project for all the pagers I was inheriting from base page. Then I realize that in VS it gives and error in HTML design mode saying  “Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive.” The issue was that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=783&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In my web project for all the pagers I was inheriting from base page. Then I realize that in VS it gives and error in HTML design mode saying  “Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive.”</p>
<p>The issue was that I was using session object in the OnInit method in my base class.so then I move my code to OnLoad mothod and then in VS the rendering error disappeared.</p>
<p>BTW in first scenario also when I run the code it worked well.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jinath.wordpress.com/783/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jinath.wordpress.com/783/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jinath.wordpress.com/783/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jinath.wordpress.com/783/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jinath.wordpress.com/783/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jinath.wordpress.com/783/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jinath.wordpress.com/783/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jinath.wordpress.com/783/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jinath.wordpress.com/783/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jinath.wordpress.com/783/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jinath.wordpress.com/783/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jinath.wordpress.com/783/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jinath.wordpress.com/783/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jinath.wordpress.com/783/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=783&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jinath.wordpress.com/2011/12/27/session-state-can-only-be-used-when-enablesessionstate-is-set-to-true-either-in-a-configuration-file-or-in-the-page-directive-page-rendering-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/252c8a21effa5cc07e87503c0623648a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jinath</media:title>
		</media:content>
	</item>
		<item>
		<title>Why Employees Leave Organizations</title>
		<link>http://jinath.wordpress.com/2011/12/15/why-employees-leave-organizations/</link>
		<comments>http://jinath.wordpress.com/2011/12/15/why-employees-leave-organizations/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 17:01:34 +0000</pubDate>
		<dc:creator>jinath</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://jinath.wordpress.com/?p=779</guid>
		<description><![CDATA[A nice blog post .. worth reading http://masterdno.wordpress.com/2011/08/12/why-employees-leave-organizations-by-azim-premji-ceo-%e2%80%93-wipro/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=779&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A nice blog post .. worth reading</p>
<p><a href="http://masterdno.wordpress.com/2011/08/12/why-employees-leave-organizations-by-azim-premji-ceo-%e2%80%93-wipro/" target="_blank">http://masterdno.wordpress.com/2011/08/12/why-employees-leave-organizations-by-azim-premji-ceo-%e2%80%93-wipro/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jinath.wordpress.com/779/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jinath.wordpress.com/779/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jinath.wordpress.com/779/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jinath.wordpress.com/779/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jinath.wordpress.com/779/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jinath.wordpress.com/779/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jinath.wordpress.com/779/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jinath.wordpress.com/779/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jinath.wordpress.com/779/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jinath.wordpress.com/779/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jinath.wordpress.com/779/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jinath.wordpress.com/779/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jinath.wordpress.com/779/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jinath.wordpress.com/779/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=779&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jinath.wordpress.com/2011/12/15/why-employees-leave-organizations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/252c8a21effa5cc07e87503c0623648a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jinath</media:title>
		</media:content>
	</item>
		<item>
		<title>smtp4dev</title>
		<link>http://jinath.wordpress.com/2011/12/06/smtp4dev/</link>
		<comments>http://jinath.wordpress.com/2011/12/06/smtp4dev/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 15:10:01 +0000</pubDate>
		<dc:creator>jinath</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://jinath.wordpress.com/?p=775</guid>
		<description><![CDATA[I’m sure that most of the devs out there have faced this issue. Have you ever wanted to test SMTP mail sending logic on dev machine and wanted to use a SMTP server? smtp4dev will give you a dummy SMTP server in order to test your mail sending logic. This will listen on port 25 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=775&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I’m sure that most of the devs out there have faced this issue. Have you ever wanted to test SMTP mail sending logic on dev machine and wanted to use a SMTP server?<br />
smtp4dev will give you a dummy SMTP server in order to test your mail sending logic. This will listen on port 25 on your dev machine. This is really nice utility to have.</p>
<p>You can download this on codeplex :- <a title="http://smtp4dev.codeplex.com/ " href="http://smtp4dev.codeplex.com/" target="_blank">http://smtp4dev.codeplex.com/ </a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jinath.wordpress.com/775/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jinath.wordpress.com/775/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jinath.wordpress.com/775/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jinath.wordpress.com/775/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jinath.wordpress.com/775/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jinath.wordpress.com/775/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jinath.wordpress.com/775/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jinath.wordpress.com/775/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jinath.wordpress.com/775/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jinath.wordpress.com/775/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jinath.wordpress.com/775/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jinath.wordpress.com/775/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jinath.wordpress.com/775/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jinath.wordpress.com/775/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=775&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jinath.wordpress.com/2011/12/06/smtp4dev/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/252c8a21effa5cc07e87503c0623648a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jinath</media:title>
		</media:content>
	</item>
		<item>
		<title>windows 8 developer preview</title>
		<link>http://jinath.wordpress.com/2011/09/15/windows-8-developer-preview/</link>
		<comments>http://jinath.wordpress.com/2011/09/15/windows-8-developer-preview/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 08:54:22 +0000</pubDate>
		<dc:creator>jinath</dc:creator>
				<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://jinath.wordpress.com/?p=759</guid>
		<description><![CDATA[I just installed windows 8 developer preview. Well what can I say?  I think this will be the best Microsoft OS to date. Really fast and superb user experience. and IE 10 seems to be cool. so now its time to get hands on VS 11 develope preview and build apps for windows &#8230;. http://www.buildwindows.com/ If [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=759&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just installed windows 8 developer preview. Well what can I say?  I think this will be the best Microsoft OS to date. Really fast and superb user experience. and IE 10 seems to be cool.</p>
<p>so now its time to get hands on VS 11 develope preview and build apps for windows &#8230;.<a href="http://www.buildwindows.com/" target="_blank"> http://www.buildwindows.com/</a></p>
<p>If you went to install win 8 developer preview Scott Hanselman has a nice blog post on how to do it safely:-<br />
<a href="http://www.hanselman.com/blog/GuideToInstallingAndBootingWindows8DeveloperPreviewOffAVHDVirtualHardDisk.aspx" target="_blank">http://www.hanselman.com/blog/GuideToInstallingAndBootingWindows8DeveloperPreviewOffAVHDVirtualHardDisk.aspx<br />
</a></p>
<p><a href="http://jinath.files.wordpress.com/2011/09/w32.jpg"><img class="alignnone size-full wp-image-766" title="w3" src="http://jinath.files.wordpress.com/2011/09/w32.jpg?w=614&#038;h=458" alt="" width="614" height="458" /></a></p>
<p> <br />
<a href="http://jinath.files.wordpress.com/2011/09/w22.jpg"><img class="alignnone size-full wp-image-767" title="w2" src="http://jinath.files.wordpress.com/2011/09/w22.jpg?w=614&#038;h=458" alt="" width="614" height="458" /></a></p>
<p>&nbsp;</p>
<p><a href="http://jinath.files.wordpress.com/2011/09/w12.jpg"><img class="alignnone size-full wp-image-768" title="w1" src="http://jinath.files.wordpress.com/2011/09/w12.jpg?w=614&#038;h=458" alt="" width="614" height="458" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jinath.wordpress.com/759/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jinath.wordpress.com/759/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jinath.wordpress.com/759/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jinath.wordpress.com/759/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jinath.wordpress.com/759/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jinath.wordpress.com/759/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jinath.wordpress.com/759/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jinath.wordpress.com/759/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jinath.wordpress.com/759/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jinath.wordpress.com/759/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jinath.wordpress.com/759/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jinath.wordpress.com/759/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jinath.wordpress.com/759/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jinath.wordpress.com/759/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=759&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jinath.wordpress.com/2011/09/15/windows-8-developer-preview/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/252c8a21effa5cc07e87503c0623648a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jinath</media:title>
		</media:content>

		<media:content url="http://jinath.files.wordpress.com/2011/09/w32.jpg" medium="image">
			<media:title type="html">w3</media:title>
		</media:content>

		<media:content url="http://jinath.files.wordpress.com/2011/09/w22.jpg" medium="image">
			<media:title type="html">w2</media:title>
		</media:content>

		<media:content url="http://jinath.files.wordpress.com/2011/09/w12.jpg" medium="image">
			<media:title type="html">w1</media:title>
		</media:content>
	</item>
		<item>
		<title>Apple and Google in the buzz ..is Microsoft sleeping?</title>
		<link>http://jinath.wordpress.com/2011/08/23/apple-and-google-in-the-buzz-is-microsoft-sleeping/</link>
		<comments>http://jinath.wordpress.com/2011/08/23/apple-and-google-in-the-buzz-is-microsoft-sleeping/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 05:40:44 +0000</pubDate>
		<dc:creator>jinath</dc:creator>
				<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://jinath.wordpress.com/?p=756</guid>
		<description><![CDATA[Apple and Google in the buzz ..is Microsoft sleeping? ..Well, I think after reading some of the things around the web something cool going to come out soon. I think it will be something to do with Facebook, Twitter and may be with G+ but definitely not another social site.. But who knows. Will it be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=756&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Apple and Google in the buzz ..is Microsoft sleeping? ..Well, I think after reading some of the things around the web something cool going to come out soon. I think it will be something to do with Facebook, Twitter and may be with G+ but definitely not another social site.. But who knows. Will it be a competitor to these or an ally?<br />
 What is this hype about <a href="http://dewaneez.com/microsoft-planning-facebookgoogle-competitor" target="_blank">Tulalip</a> ? is it true ? well time will tell</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jinath.wordpress.com/756/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jinath.wordpress.com/756/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jinath.wordpress.com/756/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jinath.wordpress.com/756/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jinath.wordpress.com/756/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jinath.wordpress.com/756/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jinath.wordpress.com/756/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jinath.wordpress.com/756/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jinath.wordpress.com/756/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jinath.wordpress.com/756/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jinath.wordpress.com/756/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jinath.wordpress.com/756/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jinath.wordpress.com/756/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jinath.wordpress.com/756/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=756&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jinath.wordpress.com/2011/08/23/apple-and-google-in-the-buzz-is-microsoft-sleeping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/252c8a21effa5cc07e87503c0623648a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jinath</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft’s Middleware and BizTalk Server Roadmap</title>
		<link>http://jinath.wordpress.com/2011/07/14/microsoft%e2%80%99s-middleware-and-biztalk-server-roadmap/</link>
		<comments>http://jinath.wordpress.com/2011/07/14/microsoft%e2%80%99s-middleware-and-biztalk-server-roadmap/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 13:06:05 +0000</pubDate>
		<dc:creator>jinath</dc:creator>
				<category><![CDATA[BizTalk]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://jinath.wordpress.com/?p=752</guid>
		<description><![CDATA[While glancing through the sessions on 2011 Microsoft Worldwide Partner Conference, I saw there is a session called The Future of Middleware and the BizTalk Roadmap. It was talking about how the public and private cloud going to come into the picture and the role of next versions of AppFabric. Here is a like to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=752&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While glancing through the sessions on 2011 Microsoft Worldwide Partner Conference, I saw there is a session called The Future of Middleware and the BizTalk Roadmap. It was talking about how the public and private cloud going to come into the picture and the role of next versions of AppFabric.<br />
Here is a like to the video and the session presentation:-<br />
<a title="Link" href="http://digitalwpc.com/Videos/AllVideos/Permalink/e821e9f8-e379-45b0-8879-12fe271c86be#fbid=kabifNmTBRl" target="_blank">http://digitalwpc.com/Videos/AllVideos/Permalink/e821e9f8-e379-45b0-8879-12fe271c86be#fbid=kabifNmTBRl</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jinath.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jinath.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jinath.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jinath.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jinath.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jinath.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jinath.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jinath.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jinath.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jinath.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jinath.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jinath.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jinath.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jinath.wordpress.com/752/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=752&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jinath.wordpress.com/2011/07/14/microsoft%e2%80%99s-middleware-and-biztalk-server-roadmap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/252c8a21effa5cc07e87503c0623648a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jinath</media:title>
		</media:content>
	</item>
		<item>
		<title>Dealing with Biztalk</title>
		<link>http://jinath.wordpress.com/2011/05/10/dealing-with-biztalk/</link>
		<comments>http://jinath.wordpress.com/2011/05/10/dealing-with-biztalk/#comments</comments>
		<pubDate>Tue, 10 May 2011 13:17:26 +0000</pubDate>
		<dc:creator>jinath</dc:creator>
				<category><![CDATA[BizTalk]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://jinath.wordpress.com/?p=748</guid>
		<description><![CDATA[Well these days I’m into some BizTalk projects. Getting used to it after working years with ASP.NET and Web related stuff. Well BizTalk also in most occasions has to deal with TCP or TCP/IP, but it kind of interesting that you have to learn lots of concepts to what you know already. on top of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=748&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well these days I’m into some BizTalk projects. Getting used to it after working years with ASP.NET and Web related stuff. Well BizTalk also in most occasions has to deal with TCP or TCP/IP, but it kind of interesting that you have to learn lots of concepts to what you know already. on top of it, if you need to learn BizTalk ESB toolkit things getting more interesting… sometimes you feel lost with all of the new vocabulary and concepts… any way if any of you like to get an idea of biztalk and trying start on it, yes you can got to BizTalk site and start on self-learning but I recommend first to get an understanding with connected system concepts ,  ESB  (enterprise service bus) architecture and Integration patterns. here is a good site called Enterprise Integration patterns that you can start with.</p>
<p><a href="http://www.enterpriseintegrationpatterns.com/">http://www.enterpriseintegrationpatterns.com/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jinath.wordpress.com/748/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jinath.wordpress.com/748/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jinath.wordpress.com/748/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jinath.wordpress.com/748/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jinath.wordpress.com/748/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jinath.wordpress.com/748/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jinath.wordpress.com/748/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jinath.wordpress.com/748/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jinath.wordpress.com/748/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jinath.wordpress.com/748/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jinath.wordpress.com/748/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jinath.wordpress.com/748/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jinath.wordpress.com/748/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jinath.wordpress.com/748/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jinath.wordpress.com&amp;blog=359123&amp;post=748&amp;subd=jinath&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jinath.wordpress.com/2011/05/10/dealing-with-biztalk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/252c8a21effa5cc07e87503c0623648a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jinath</media:title>
		</media:content>
	</item>
	</channel>
</rss>
