<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>IT is ksawme</title>
	
	<link>http://it.ksaw.me</link>
	<description>Place where I breathe &amp; talk about technology</description>
	<lastBuildDate>Mon, 30 Nov 2009 15:07:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<cloud domain="it.ksaw.me" port="80" path="/?rsscloud=notify" registerProcedure="" protocol="http-post" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/swamik" /><feedburner:info uri="swamik" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>How to infuse copyright symbol in HTML emails</title>
		<link>http://feedproxy.google.com/~r/swamik/~3/VP5Av_aAUpE/</link>
		<comments>http://it.ksaw.me/2009/11/30/how-to-infuse-copyright-symbol-in-html-emails/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 14:47:26 +0000</pubDate>
		<dc:creator>ksawme</dc:creator>
				<category><![CDATA[asp.net]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://it.ksaw.me/?p=31</guid>
		<description><![CDATA[We send mailers from asp.net web applications &#38; copyright is one of the commonly used symbols/word in the mailers I was thinking infusing copyright symbol in an email is as easy as just copying and pasting the © character But it is not the case as it showed copyright as ? instead of © We breaked [...]]]></description>
			<content:encoded><![CDATA[<p>We send mailers from asp.net web applications &amp; copyright is one of the commonly used symbols/word in the mailers</p>
<p>I was thinking infusing copyright symbol in an email is as easy as just copying and pasting the © character</p>
<p>But it is not the case as it showed copyright as ? instead of © <img src='http://it.ksaw.me/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>We breaked our head for an hour before we found the compatible mode to displaying copyright symbol in HTML mailer..It is very simple&#8230;</p>
<blockquote><p>All that you have to do is place <strong>&amp;copy; </strong>where you want to place the copyright symbol.</p></blockquote>
<p>Then you should be able to see a perfect <strong>© </strong>symbol in your HTML mailers</p>
<p><span style="font-family: Arial;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Happy Coding!!!</span></span></p>
<img src="http://feeds.feedburner.com/~r/swamik/~4/VP5Av_aAUpE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://it.ksaw.me/2009/11/30/how-to-infuse-copyright-symbol-in-html-emails/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://it.ksaw.me/2009/11/30/how-to-infuse-copyright-symbol-in-html-emails/</feedburner:origLink></item>
		<item>
		<title>jQuery – a real Write Less, Do More javascript library</title>
		<link>http://feedproxy.google.com/~r/swamik/~3/Y0330ByFdXs/</link>
		<comments>http://it.ksaw.me/2009/05/26/jquery-a-real-write-less-do-more-javascript-library/#comments</comments>
		<pubDate>Tue, 26 May 2009 14:05:00 +0000</pubDate>
		<dc:creator>ksawme</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[javascript library]]></category>

		<guid isPermaLink="false">http://it.ksaw.me/?p=12</guid>
		<description><![CDATA[// For the past couple of months, we have started implementing jQuery in our projects and boy?. we all became a fan of it. It really makes our life easier. Their tag line is jQuery The Write Less, Do More, JavaScript Library which is very much true Lot of things for which we used to [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript">// <![CDATA[
$(document).ready(function(){    $("#lnkAnimate").click(function () { $("#divBeleive").hide();    $("#divDontBeleive").fadeIn(3000, function () {  $("#divBeleive").fadeIn(5000);      });      return false;    });   });
// ]]&gt;</script></p>
<p>For the past couple of months, we have started implementing <a href="http://jquery.com/" target="_blank">jQuery</a> in our projects and boy?. we all became a fan of it.</p>
<p>It really makes our life easier. Their tag line is</p>
<blockquote><p>jQuery  The Write Less, Do More, JavaScript Library</p></blockquote>
<p>which is very much true</p>
<p>Lot of things for which we used to write lines and lines of code in JavaScript can be done in jQuery in just couple of lines and very easily..</p>
<p>Trust me? I mean it?</p>
<div id="divDontBeleive">
<p>If you still don?t believe it, click <a id="lnkAnimate" href="javascript:void(0);">here</a></div>
<div id="divBeleive" style="display: none"><span style="color:#ff8000;"><strong>Believe that what you are seeing now has been done in jQuery in just few lines!!!</strong></span></div>
<p>Watch out for this space as I am going to publish How to jQuery in coming days?</p>
<img src="http://feeds.feedburner.com/~r/swamik/~4/Y0330ByFdXs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://it.ksaw.me/2009/05/26/jquery-a-real-write-less-do-more-javascript-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://it.ksaw.me/2009/05/26/jquery-a-real-write-less-do-more-javascript-library/</feedburner:origLink></item>
		<item>
		<title>Visual Studio 2010 Beta 1 shipped !!!</title>
		<link>http://feedproxy.google.com/~r/swamik/~3/ShgP8M2T9G8/</link>
		<comments>http://it.ksaw.me/2009/05/26/visual-studio-2010-beta-1-shipped/#comments</comments>
		<pubDate>Tue, 26 May 2009 11:49:00 +0000</pubDate>
		<dc:creator>ksawme</dc:creator>
				<category><![CDATA[Visual Studio 2010]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://it.ksaw.me/?p=10</guid>
		<description><![CDATA[For all Visual Studio fans, Visual Studio 2010 Beta 1 has been shipped!!! Head onto http://msdn.microsoft.com/en-us/vstudio/dd582936.aspx for more info Goto http://msdn.microsoft.com/en-us/vstudio/dd441784.aspx for walk through If you are kind of a guy who says ok thanks? but I just need the download info? Well..here it is Visual Studio 2010 Professional Beta 1 Visual Studio Team System [...]]]></description>
			<content:encoded><![CDATA[<p>For all Visual Studio fans, Visual Studio 2010 Beta 1 has been shipped!!!</p>
<ul>
<li>Head onto <a href="http://msdn.microsoft.com/en-us/vstudio/dd582936.aspx">http://msdn.microsoft.com/en-us/vstudio/dd582936.aspx</a> for more info </li>
<li>Goto <a href="http://msdn.microsoft.com/en-us/vstudio/dd441784.aspx">http://msdn.microsoft.com/en-us/vstudio/dd441784.aspx</a> for walk through </li>
</ul>
<p>If you are kind of a guy who says</p>
<blockquote><p>ok thanks? but I just need the download info?</p>
</blockquote>
<p>Well..here it is </p>
<p><a href="http://go.microsoft.com/fwlink/?LinkId=147408"><strong>Visual Studio 2010 Professional Beta 1</strong></a></p>
<p><a href="http://go.microsoft.com/fwlink/?LinkId=147407"><strong>Visual Studio Team System 2010 Team Suite Beta 1</strong></a></p>
<p><a href="http://go.microsoft.com/fwlink/?LinkID=147412"><strong>Visual Studio Team Foundation Server 2010 Beta 1</strong></a></p>
<p>Happy .NETing?</p>
<img src="http://feeds.feedburner.com/~r/swamik/~4/ShgP8M2T9G8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://it.ksaw.me/2009/05/26/visual-studio-2010-beta-1-shipped/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://it.ksaw.me/2009/05/26/visual-studio-2010-beta-1-shipped/</feedburner:origLink></item>
		<item>
		<title>Tweet# – awesome C# wrapper for Twitter API</title>
		<link>http://feedproxy.google.com/~r/swamik/~3/squuHkBYw1A/</link>
		<comments>http://it.ksaw.me/2009/02/07/tweet-awesome-c-wrapper-for-twitter-api/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 14:05:00 +0000</pubDate>
		<dc:creator>ksawme</dc:creator>
				<category><![CDATA[.NET Tools]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Tweet#]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[c wrapper]]></category>
		<category><![CDATA[client applications]]></category>
		<category><![CDATA[social networking service]]></category>

		<guid isPermaLink="false">http://it.ksaw.me/?p=9</guid>
		<description><![CDATA[Most of us already are aware of the power of Twitter, an awesome social networking service. For our projects, I have been looking out for C# wrapper for the Twitter API which led me to Tweet# developed by Daniel Crenna of Dimebrain Tweet# is a feature-complete library for the Twitter API. Use this library in [...]]]></description>
			<content:encoded><![CDATA[<div class="csharpcode"><a href="http://lh5.ggpht.com/_wpVnyXPfD3M/SY2dLSZSIyI/AAAAAAAAF_U/WBleo9sZjh8/s1600-h/image%5B2%5D.png"><img title="image" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="111" alt="image" src="http://lh5.ggpht.com/_wpVnyXPfD3M/SY0ks8B0TfI/AAAAAAAAF_Y/khgFQvazFYo/image_thumb%5B1%5D.png?imgmax=800" width="111" border="0" /></a> Most of us already are aware of the power of <a href="http://twitter.com/" target="_blank">Twitter</a>, an awesome social networking service. </div>
<div class="csharpcode"> </div>
<div class="csharpcode"></div>
<div class="csharpcode">For our projects, I have been looking out for C# wrapper for the Twitter API which led me to <a href="http://code.google.com/p/tweetsharp/" target="_blank">Tweet#</a> developed by Daniel Crenna of <a href="http://dimebrain.com/" target="_blank">Dimebrain</a></div>
<div class="csharpcode"> </div>
<div class="csharpcode"></div>
<blockquote><div class="csharpcode"></div>
<div class="csharpcode"> </div>
<div class="csharpcode">Tweet# is a feature-complete library for the Twitter API. Use this library in your client applications to enable a simple, discoverable fluent interface for building Twitter queries, as well as additional features like asynchronous processing, server-side caching, url shortening, and rate throttling.</div>
</blockquote>
<div class="csharpcode"></div>
<div class="csharpcode"> </div>
<div class="csharpcode">Just downloaded it and within minutes of trying out the library, I became fan of this library. </div>
<div class="csharpcode"></div>
<div class="csharpcode"></div>
<div class="csharpcode"> </div>
<div class="csharpcode">You can download the API library <strike><a href="http://tweetsharp.googlecode.com/files/TweetSharp-Preview-6.zip" target="_blank" style="text-decoration: none;">here</a></strike></div>
<div class="csharpcode">
<p><b>Update</b></p>
<p>Go  <a href="http://code.google.com/p/tweetsharp/downloads/list">here</a> to download for latest API library. Thanks for the update Daniel <img src='http://it.ksaw.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>
<div class="csharpcode"></div>
<div class="csharpcode">At this moment, documentation &amp; code sample for this library is limited.</div>
<div class="csharpcode"></div>
<div class="csharpcode"> </div>
<div class="csharpcode"></div>
<div class="csharpcode">I have planned to write some code samples on using the Tweet# library in the coming days.</div>
<div class="csharpcode"></div>
<div class="csharpcode">Stay tuned?</div>
<div class="csharpcode"></div>
<p>Go Twittering &amp; .NET?ing?.. <img src='http://it.ksaw.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><b><br /></b></p>
<img src="http://feeds.feedburner.com/~r/swamik/~4/squuHkBYw1A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://it.ksaw.me/2009/02/07/tweet-awesome-c-wrapper-for-twitter-api/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://it.ksaw.me/2009/02/07/tweet-awesome-c-wrapper-for-twitter-api/</feedburner:origLink></item>
		<item>
		<title>Crystal Reports Merge Modules for Visual Studio 2008</title>
		<link>http://feedproxy.google.com/~r/swamik/~3/hfp4RGE3cW8/</link>
		<comments>http://it.ksaw.me/2009/01/31/crystal-reports-merge-modules-for-visual-studio-2008/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 05:29:00 +0000</pubDate>
		<dc:creator>ksawme</dc:creator>
				<category><![CDATA[Visual Studio 2008]]></category>
		<category><![CDATA[crystal report]]></category>

		<guid isPermaLink="false">http://it.ksaw.me/?p=8</guid>
		<description><![CDATA[Are you one among the web developers wondering why the Crystal Reports in your asp.net website works well in dev environment but having lot of issues when deployed in Live environment? I faced the same issue couples of years back and at last found out that Crystal Report merge modules aka runtimes should be installed [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://lh4.ggpht.com/_wpVnyXPfD3M/SYPhqf-bfwI/AAAAAAAAF5Y/GJjWOAS2VTk/s1600-h/image%5B8%5D.png"><img title="image" style="border-width: 0px; display: inline; margin-left: 0px; margin-right: 0px;" alt="image" src="http://lh3.ggpht.com/_wpVnyXPfD3M/SYPhsB4ffYI/AAAAAAAAF5c/gtsTLLgvul0/image_thumb%5B6%5D.png?imgmax=800" width="100" align="left" border="0" height="47" /></a> Are you one among the web developers wondering why the Crystal Reports in your asp.net website works well in dev environment but having lot of issues when deployed in Live environment?</p>
<p>I faced the same issue couples of years back and at last found out that Crystal Report merge modules aka runtimes should be installed in the live server. And the worst thing is..you cannot find these runtimes in you dev machine..</p>
<p><strong>Then where can I find it???</strong></p>
<p>I had the same question two years back and ended up asking Business object support where a CS representative gave me the access details of it..</p>
<p><strong>Please give me the link..you may ask</strong></p>
<p>Sorry..it won?t be useful..as that link will return ?404 Page Not found? now..Business object keeps on moving this Merge Module link quite frequently to make sure we always run around the corners searching for it <img src='http://it.ksaw.me/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p><strong>Enough talk..tell me where it is now?</strong></p>
<p>Well..it is <a href="https://websmp130.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/spn/bobj_download/main.htm" target="_blank">here</a></p>
<p>And please make sure?you download it as soon as possible as there is a possibility that this page also might return ?404 Page Not found? any time in the near future <img src='http://it.ksaw.me/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/swamik/~4/hfp4RGE3cW8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://it.ksaw.me/2009/01/31/crystal-reports-merge-modules-for-visual-studio-2008/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://it.ksaw.me/2009/01/31/crystal-reports-merge-modules-for-visual-studio-2008/</feedburner:origLink></item>
		<item>
		<title>Visual Studio 2008 Keyboard shortcut posters</title>
		<link>http://feedproxy.google.com/~r/swamik/~3/-CmSPHfRX48/</link>
		<comments>http://it.ksaw.me/2009/01/23/visual-studio-2008-keyboard-shortcut-posters/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 15:07:00 +0000</pubDate>
		<dc:creator>ksawme</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>
		<category><![CDATA[download]]></category>

		<guid isPermaLink="false">http://it.ksaw.me/?p=7</guid>
		<description><![CDATA[Today I googled to find out if there are any shortcut tables available for Visual Studio 2008. Surprisingly, Microsoft itself have released the shortcuts as posters.. Here they are.. You can download Visual C# 2008 Keyboard Shortcut Reference Poster here You can download Visual Basic 2008 Keyboard Shortcut Reference Poster here What about Visual Studio [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://lh5.ggpht.com/_wpVnyXPfD3M/SXmy-Q1mSRI/AAAAAAAAFew/zIfggFe_gcM/s1600-h/shortcuts%5B11%5D.jpg"><img title="shortcuts" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin-left: 0px; margin-right: 0px; border-right-width: 0px" height="128" alt="shortcuts" src="http://lh6.ggpht.com/_wpVnyXPfD3M/SXmzBz7pyXI/AAAAAAAAFe0/Qn8OkW7mq20/shortcuts_thumb%5B9%5D.jpg?imgmax=800" width="167" align="left" border="0" /></a> Today I googled to find out if there are any shortcut tables available for Visual Studio 2008. Surprisingly, Microsoft itself have released the shortcuts as posters..</p>
<p>Here they are..</p>
<p>You can download Visual C# 2008 Keyboard Shortcut Reference Poster <a href="http://www.microsoft.com/downloads/details.aspx?familyid=E5F902A8-5BB5-4CC6-907E-472809749973&amp;displaylang=en" target="_blank">here</a></p>
<p>You can download Visual Basic 2008 Keyboard Shortcut Reference Poster <a href="http://www.microsoft.com/downloads/details.aspx?familyid=255b8cf1-f6bd-4b55-bb42-dd1a69315833&amp;displaylang=en" target="_blank">here</a></p>
<p><strong>What about Visual Studio 2005 users???</strong></p>
<p>I know you will ask that question <img src='http://it.ksaw.me/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  </p>
<p>Here they are</p>
<p>You can download Visual C# 2005 Keyboard Shortcut Reference Poster <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c15d210d-a926-46a8-a586-31f8a2e576fe&amp;DisplayLang=en" target="_blank">here</a></p>
<p>You can download Visual Basic 2005 Keyboard Shortcut Reference Poster <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6bb41456-9378-4746-b502-b4c5f7182203&amp;DisplayLang=en" target="_blank">here</a>     </p>
<p><strong>Update on Feb 7, 2009</strong></p>
<p>Some of the readers asked on how the poster look like. We have pasted the poster on our Engg IT deparment and here is how beautifully it looks <img src='http://it.ksaw.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="wlWriterEditableSmartContent" id="scid:8747F07C-CDE8-481f-B0DF-C6CFD074BF67:c2d2d982-2580-4987-a4e4-3153325d2630" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px"><a href="http://lh5.ggpht.com/_wpVnyXPfD3M/SY1SwyMscDI/AAAAAAAAF-k/pZp04XrH_WM/100_0280-8x6.jpg?imgmax=800" title="Pretty!!! Isnt it !!!" rel="thumbnail"><img border="0" src="http://lh3.ggpht.com/_wpVnyXPfD3M/SY1TR9Q6TDI/AAAAAAAAF-s/4ilbeTP_1gA/100_0280%5B12%5D.png?imgmax=800" width="420" height="390" /></a></div>
<p>Happy shortcutting!!!! &amp; of course go .NETing <img src='http://it.ksaw.me/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/swamik/~4/-CmSPHfRX48" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://it.ksaw.me/2009/01/23/visual-studio-2008-keyboard-shortcut-posters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://it.ksaw.me/2009/01/23/visual-studio-2008-keyboard-shortcut-posters/</feedburner:origLink></item>
		<item>
		<title>How to use MS Build to compile websites? For Beginners</title>
		<link>http://feedproxy.google.com/~r/swamik/~3/oUjzuDBm2lQ/</link>
		<comments>http://it.ksaw.me/2009/01/13/how-to-use-ms-build-to-compile-websites-for-beginners/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 15:44:00 +0000</pubDate>
		<dc:creator>ksawme</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[MS Build]]></category>
		<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://it.ksaw.me/?p=6</guid>
		<description><![CDATA[Most of .NET developers are interested in compiling applications using MS Build. But disappointingly, there are no such good pointers/references available in the web which talks about step by step instructions for beginners on how to use MS Build to compile websites Then I came across an interesting video tutorial over here where Chris Pels [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://lh5.ggpht.com/_wpVnyXPfD3M/SXq-63BrrpI/AAAAAAAAFmo/uHv1gFcXTxM/s1600-h/construction%5B10%5D.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; margin-left: 0px; border-left: 0px; margin-right: 0px; border-bottom: 0px" title="construction" src="http://lh5.ggpht.com/_wpVnyXPfD3M/SXq-_JuCaZI/AAAAAAAAFms/eusw1Nr7elo/construction_thumb%5B8%5D.jpg?imgmax=800" border="0" alt="construction" width="131" height="186" align="left" /></a> Most of .NET developers are interested in compiling applications using MS Build. But disappointingly, there are no such good pointers/references available in the web which talks about step by step instructions for beginners on how to use MS Build to compile websites</p>
<p>Then I came across an interesting video tutorial over <a href="http://www.asp.net/learn/3.5-videos/video-394.aspx">here</a> where Chris Pels just demonstrates on how to use MS Build to compile websites. Video is so simple to follow and give us step by step idea on how to go about it.</p>
<p>Alternatively you can download <a href="http://download.microsoft.com/download/5/b/5/5b5f2663-bbd3-439a-bebe-ae88df0f80a9/WinVideo-ASP-MSBuild.zip">video here</a> and <a href="http://download.microsoft.com/download/5/b/5/5b5f2663-bbd3-439a-bebe-ae88df0f80a9/CS-SC-MSBuild_cs.zip">C# source</a>, <a href="http://download.microsoft.com/download/5/b/5/5b5f2663-bbd3-439a-bebe-ae88df0f80a9/VB-SC-MS%20Build_vb.zip">VB.NET source</a> here</p>
<p>Try it out and Go .NET-ing <img src='http://it.ksaw.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/swamik/~4/oUjzuDBm2lQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://it.ksaw.me/2009/01/13/how-to-use-ms-build-to-compile-websites-for-beginners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://it.ksaw.me/2009/01/13/how-to-use-ms-build-to-compile-websites-for-beginners/</feedburner:origLink></item>
		<item>
		<title>Free coding standards documents for C# and VB.NET</title>
		<link>http://feedproxy.google.com/~r/swamik/~3/IOCHJdtYrtg/</link>
		<comments>http://it.ksaw.me/2008/12/23/free-coding-standards-documents-for-c-and-vb-net/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 07:09:00 +0000</pubDate>
		<dc:creator>ksawme</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://it.ksaw.me/?p=5</guid>
		<description><![CDATA[Clint Edmonson has gifted us a great holiday goodies by releasing Free coding standards documents for C# and VB.NET To view the post, click here To download the documents straight away, click here Thanks Clint. It was indeed a great holiday gift]]></description>
			<content:encoded><![CDATA[<p>Clint Edmonson has gifted us a great holiday goodies by releasing Free coding standards documents for C# and VB.NET</p>
<p>To view the post, click <a href="http://www.notsotrivial.net/blog/post/2008/12/Holiday-Goodie-Bag-Free-C-and-VB-Coding-Standards-Reference-Documents.aspx" target="_blank">here</a></p>
<p>To download the documents straight away, click <a href="http://www.notsotrivial.net/blog/file.axd?file=codingstandards.zip" target="_blank">here</a></p>
<p>Thanks Clint. It was indeed a great holiday gift <img src='http://it.ksaw.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/swamik/~4/IOCHJdtYrtg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://it.ksaw.me/2008/12/23/free-coding-standards-documents-for-c-and-vb-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://it.ksaw.me/2008/12/23/free-coding-standards-documents-for-c-and-vb-net/</feedburner:origLink></item>
		<item>
		<title>PreCompile or Publish websites in Visual Developer 2008 Express Edition</title>
		<link>http://feedproxy.google.com/~r/swamik/~3/yzNjikKnqzc/</link>
		<comments>http://it.ksaw.me/2008/12/17/precompile-or-publish-websites-in-visual-developer-2008-express-edition/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 13:15:00 +0000</pubDate>
		<dc:creator>ksawme</dc:creator>
				<category><![CDATA[Visual Developer 2008 Express Edition]]></category>
		<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://it.ksaw.me/?p=4</guid>
		<description><![CDATA[One of the most wanted feature missing in Visual Developer 2008 Express Edition is precompiling/publish feature which is available in Visual Studio Professional Edition. I don&#8217;t want to deploy the website with code behind and class source files. So, I googled on this and found interesting sources online. Have consolidated and below are the steps [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most wanted feature missing in Visual Developer 2008 Express Edition is precompiling/publish feature which is available in Visual Studio Professional Edition. </p>
<p>I don&#8217;t want to deploy the website with code behind and class source files. So, I googled on this and found interesting sources online. </p>
<p>Have consolidated and below are the steps to precompile/publish your websites in Visual Developer 2008 Express Edition</p>
<ol>
<li>Launch Visual Web Developer Express Edition. </li>
<li>Select Tools &gt; External Tools to access the External Tools dialog. </li>
<li>Type <strong><tt>Pre-&amp;Compile (non-updatable)</tt></strong> in the Title text box. The ampersand in the title means that the character immediately after will be defined as a hotkey for the menu item. </li>
<li>Click the browse button next to the Command text box and browse to <tt>aspnet_compiler.exe</tt> in the Windows\Microsoft.NET\Framework\v2.0.50727 directory. </li>
<li>Click Open to select the <tt>aspnet_compiler.exe</tt> application. </li>
<li>Type <strong><tt>-p "</tt></strong> in the Arguments text box. </li>
<li>Click the right-facing arrow button on the right edge of the Arguments text box and select Project Directory, as shown in below screenshot </li>
</ol>
<ol><a href="http://lh6.ggpht.com/_wpVnyXPfD3M/SUj7Uvg3VKI/AAAAAAAADf8/R1emuFX2Wr0/s1600-h/1%5B3%5D.jpg" target="_blank"><img style="border-width: 0px;" alt="1" src="http://lh4.ggpht.com/_wpVnyXPfD3M/SUj7W1JYEoI/AAAAAAAADgA/nVjH9ZkvKiE/1_thumb%5B1%5D.jpg?imgmax=800" width="244" border="0" height="148" /></a> </ol>
<blockquote><p>You configure the arguments for <tt>aspnet_compiler.exe</tt> by using the menu to the right of the Arguments text box.</p>
</blockquote>
<ol>
<li>Enter a closing quote at the end of the arguments you&#8217;ve entered so far. At this point, the Arguments text box should contain the following text:
<pre>-p "$(ProjectDir)" </pre>
</li>
<li>Press the spacebar to add a space at the end of the arguments you&#8217;ve entered so far, and then type <strong><tt>-v / "</tt></strong>.</li>
<li>Click the right-facing arrow button at the right edge of the Arguments text box again and select Project Directory.</li>
<li>Type <strong><tt>\..\Compiled"</tt></strong> after the existing arguments. At this point, the Arguments text box should contain the following text:
<pre>-p "$(ProjectDir)" -v / "$(ProjectDir)\..\Compiled"</pre>
<p></li>
<li>Check the Close on Exit check box.</li>
<li>Click OK to add the new external tool to the list.</li>
</ol>
<p>You now have a new menu option in Visual Web Developer Express Edition (see below screenshot) that enables you to precompile your web application as a non-updatable application.</p>
<p><a href="http://lh3.ggpht.com/_wpVnyXPfD3M/SUj7aY_t1YI/AAAAAAAADgE/1I65k7OOjtI/s1600-h/2%5B2%5D.jpg"><img style="border-width: 0px;" alt="2" src="http://lh6.ggpht.com/_wpVnyXPfD3M/SUj7c1XOHnI/AAAAAAAADgI/z9kHqVnvHjE/2_thumb.jpg?imgmax=800" width="244" border="0" height="148" /></a>
</p>
<p>That&#8217;s it!!! Now compile/publish your websites in Visual Developer 2008 Express Edition and start rocking!!!</p>
<img src="http://feeds.feedburner.com/~r/swamik/~4/yzNjikKnqzc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://it.ksaw.me/2008/12/17/precompile-or-publish-websites-in-visual-developer-2008-express-edition/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://it.ksaw.me/2008/12/17/precompile-or-publish-websites-in-visual-developer-2008-express-edition/</feedburner:origLink></item>
		<item>
		<title>Welcome to my Technical world</title>
		<link>http://feedproxy.google.com/~r/swamik/~3/AWf2vFSVMBY/</link>
		<comments>http://it.ksaw.me/2008/12/16/welcome-to-my-technical-world/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 10:11:00 +0000</pubDate>
		<dc:creator>ksawme</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://it.ksaw.me/?p=3</guid>
		<description><![CDATA[Hi All: This is Swami welcoming you all to my technical blog. For now, I will writing more on .NET environment especially ASP.NET and C# Will meet you soon?. Regards,Swami P.S : If you are looking out for my personal blog, please jump to http://ksawme.blogspot.com where I talk about things that excites me. Just come [...]]]></description>
			<content:encoded><![CDATA[<p>Hi All:</p>
<p>This is Swami welcoming you all to my technical blog.  For now, I will writing more on .NET environment especially ASP.NET and C#</p>
<p>Will meet you soon?.</p>
<p>Regards,<br />Swami</p>
<p>P.S : If you are looking out for my personal blog, please jump to <a href="http://ksawme.blogspot.com">http://ksawme.blogspot.com</a> where I talk about things that excites me. Just come here and chill out.</p>
<img src="http://feeds.feedburner.com/~r/swamik/~4/AWf2vFSVMBY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://it.ksaw.me/2008/12/16/welcome-to-my-technical-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://it.ksaw.me/2008/12/16/welcome-to-my-technical-world/</feedburner:origLink></item>
	</channel>
</rss>

