<?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>Amit Verma &#187; WebDev</title>
	<atom:link href="http://amit.me/category/webdev/feed" rel="self" type="application/rss+xml" />
	<link>http://amit.me</link>
	<description>A walk along technology river</description>
	<lastBuildDate>Wed, 08 Sep 2010 17:50:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How useful an Actionless form could be</title>
		<link>http://amit.me/how-useful-an-actionless-form-could-be/606</link>
		<comments>http://amit.me/how-useful-an-actionless-form-could-be/606#comments</comments>
		<pubDate>Thu, 26 Aug 2010 12:43:13 +0000</pubDate>
		<dc:creator>Amit Verma</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[asp.net postback]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[HTML form]]></category>
		<category><![CDATA[URL Rewriting]]></category>

		<guid isPermaLink="false">http://amit.me/?p=606</guid>
		<description><![CDATA[This article is relevant to ASP.NET. Knowledge of HTML and ASP.Net is required. I was working on a project where I had to implement URL rewriting. I was also working on a tool to update a site’s (let’s say a.com) content. The tool was hosted on another domain (b.com). I had to use images and [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><em>This article is relevant to <a class="zem_slink" title="ASP.NET" rel="homepage" href="http://www.asp.net">ASP.NET</a>. Knowledge of HTML and ASP.Net is required.</em></p>
<p>I was working on a project where I had to implement URL rewriting. I was also working on a tool to update a site’s (let’s say <em>a.com</em>) content. The tool was hosted on another domain (<em>b.com</em>). I had to use images and <a class="zem_slink" title="Cascading Style Sheets" rel="wikipedia" href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets">CSS</a> (everything else was in a database) lying at<em> a.com</em> onto <em>b.com</em> to preview the changes.</p>
<p>Let’s see what problems I faced in both the situations and how these were solved using <strong>Actionless <code>form</code></strong>. I have given similar examples, not the real situations.</p>
<h3>Case 1: URL Rewriting</h3>
<p>I was working on URL Rewriting where I had to work with hierarchical pages, something like below.</p>
<p><img class="aligncenter size-full wp-image-607" title="Page Hierarcy - How useful an Actionless form could be" src="http://amit.me/wp-content/uploads/2010/08/pagehierarcy.png" alt="Page Hierarcy - How useful an Actionless form could be" width="640" height="214" /></p>
<p>So the URLs should be:</p>
<ul>
<li>http://a.com/products/category1/product1.aspx</li>
<li>http://a.com/products/category1/product2.aspx</li>
<li>http://a.com/products/category1/product3.aspx</li>
<li>http://a.com/products/category2/product4.aspx and so on&#8230;</li>
</ul>
<p>But the actual page exists at http://a.com/products/default.aspx.</p>
<p>There are some server controls on the page as well which raise page postback. For example, you have two dropdowns – one for categories and another for products. When you choose an item from categories dropdown it raises a postback to update the products dropdown to show relevant products.</p>
<p>By default, the action attribute of <code>form </code>is set to the actual page and the path will be relative not absolute, “default.aspx” in this case.</p>
<p>So now, suppose you have opened http://a.com/products/category1/product1.aspx URL and you have picked an item from category. It will raise a postback event and look for default.aspx at http://a.com/products/category1 but its not there and the page will break. If you remove action attribute from <code>form </code>element then it will always postback to the same page and the URL rewriting rules will take care of rest of the things.</p>
<h3>Case 2: using one domain’s files on another domain/sub-domain</h3>
<p>There might be cases when we have to use images and CSS lying on another domain. There are two options to achieve this – either use <a href="http://en.wikipedia.org/wiki/Absolute_path" target="_blank">absolute path</a> or use <a href="http://www.w3schools.com/TAGS/tag_base.asp" target="_blank"><code>base</code></a><code> </code>tag. I had to opt for <code>base </code>tab because the IMAGE URLs were saved in the database with the running text (I know I could search and replace them using regex but I still opted for <code>base </code>tag).</p>
<p>Now, when I have used <code>base </code>tag, it will add a base URL to all the relative URLs and it includes the value of action attribute in form tag. Let’s name the domains, the images are at a.com and are being used on b.com. So when the postback event will be raised, it will find the action attribute file at a.com which isn’t there.</p>
<p>To overcome this situation, we can remove the action attribute so that it will always postback on the same page.</p>
<h3>Solution</h3>
<p>Unfortunately ASP.Net doesn’t give option to change or remove the value of action attribute directly. But a new form class can be implemented by inheriting System.Web.UI.HtmlControls.HtmlForm class. The implementation of Actionless form is given at <a href="http://msdn.microsoft.com/en-us/library/ms972974.aspx#urlrewriting_topic6" target="_blank">this page</a> – look for the section “Handling Postbacks”. You can also download the DLL from <a href="http://amit.me/wp-content/uploads/2010/08/ActionlessForm.zip">here</a>.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Famit.me%2Fhow-useful-an-actionless-form-could-be%2F606&amp;title=How%20useful%20an%20Actionless%20form%20could%20be&amp;bodytext=This%20article%20is%20relevant%20to%20ASP.NET.%20Knowledge%20of%20HTML%20and%20ASP.Net%20is%20required.%0D%0A%0D%0AI%20was%20working%20on%20a%20project%20where%20I%20had%20to%20implement%20URL%20rewriting.%20I%20was%20also%20working%20on%20a%20tool%20to%20update%20a%20site%E2%80%99s%20%28let%E2%80%99s%20say%20a.com%29%20content.%20The%20tool%20was%20hosted%20o" title="Digg"><img src="http://amit.me/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Famit.me%2Fhow-useful-an-actionless-form-could-be%2F606&amp;title=How%20useful%20an%20Actionless%20form%20could%20be&amp;notes=This%20article%20is%20relevant%20to%20ASP.NET.%20Knowledge%20of%20HTML%20and%20ASP.Net%20is%20required.%0D%0A%0D%0AI%20was%20working%20on%20a%20project%20where%20I%20had%20to%20implement%20URL%20rewriting.%20I%20was%20also%20working%20on%20a%20tool%20to%20update%20a%20site%E2%80%99s%20%28let%E2%80%99s%20say%20a.com%29%20content.%20The%20tool%20was%20hosted%20o" title="del.icio.us"><img src="http://amit.me/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Famit.me%2Fhow-useful-an-actionless-form-could-be%2F606&amp;t=How%20useful%20an%20Actionless%20form%20could%20be" title="Facebook"><img src="http://amit.me/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Famit.me%2Fhow-useful-an-actionless-form-could-be%2F606&amp;title=How%20useful%20an%20Actionless%20form%20could%20be&amp;annotation=This%20article%20is%20relevant%20to%20ASP.NET.%20Knowledge%20of%20HTML%20and%20ASP.Net%20is%20required.%0D%0A%0D%0AI%20was%20working%20on%20a%20project%20where%20I%20had%20to%20implement%20URL%20rewriting.%20I%20was%20also%20working%20on%20a%20tool%20to%20update%20a%20site%E2%80%99s%20%28let%E2%80%99s%20say%20a.com%29%20content.%20The%20tool%20was%20hosted%20o" title="Google Bookmarks"><img src="http://amit.me/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="mailto:?subject=How%20useful%20an%20Actionless%20form%20could%20be&amp;body=http%3A%2F%2Famit.me%2Fhow-useful-an-actionless-form-could-be%2F606" title="email"><img src="http://amit.me/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=How%20useful%20an%20Actionless%20form%20could%20be&amp;link=http%3A%2F%2Famit.me%2Fhow-useful-an-actionless-form-could-be%2F606" title="FriendFeed"><img src="http://amit.me/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Famit.me%2Fhow-useful-an-actionless-form-could-be%2F606&amp;title=How%20useful%20an%20Actionless%20form%20could%20be&amp;source=Amit+Verma+A+walk+along+technology+river&amp;summary=This%20article%20is%20relevant%20to%20ASP.NET.%20Knowledge%20of%20HTML%20and%20ASP.Net%20is%20required.%0D%0A%0D%0AI%20was%20working%20on%20a%20project%20where%20I%20had%20to%20implement%20URL%20rewriting.%20I%20was%20also%20working%20on%20a%20tool%20to%20update%20a%20site%E2%80%99s%20%28let%E2%80%99s%20say%20a.com%29%20content.%20The%20tool%20was%20hosted%20o" title="LinkedIn"><img src="http://amit.me/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Famit.me%2Fhow-useful-an-actionless-form-could-be%2F606&amp;title=How%20useful%20an%20Actionless%20form%20could%20be" title="Live"><img src="http://amit.me/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Famit.me%2Fhow-useful-an-actionless-form-could-be%2F606" title="Technorati"><img src="http://amit.me/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=How%20useful%20an%20Actionless%20form%20could%20be%20-%20http%3A%2F%2Famit.me%2Fhow-useful-an-actionless-form-could-be%2F606" title="Twitter"><img src="http://amit.me/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://amit.me/how-useful-an-actionless-form-could-be/606/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2008 and .NET 3.5 SP1 now available</title>
		<link>http://amit.me/visual-studio-2008-and-net-35-sp1-now-available/89</link>
		<comments>http://amit.me/visual-studio-2008-and-net-35-sp1-now-available/89#comments</comments>
		<pubDate>Tue, 12 Aug 2008 18:23:37 +0000</pubDate>
		<dc:creator>Amit Verma</dc:creator>
				<category><![CDATA[WebDev]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.amit.me/blog/visual-studio-2008-and-net-35-sp1-now-available/</guid>
		<description><![CDATA[Microsoft has released Service Pack 1 for Visual Studio 2008 and .NET 3.5. The download links are: Visual Studio 2008 SP1 .NET Framework 3.5 SP1 Visual Studio 2008 Express Editions with SP1 Visual Studio Team System 2008 Team Foundation Server SP1 Visual Studio 2008 Shell (integrated mode) with Service Pack 1 Visual Studio 2008 Shell [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.microsoft.com" target="_blank">Microsoft</a> has released Service Pack 1 for Visual Studio 2008 and .NET 3.5.</p>
<p>The download links are:</p>
<ul>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=FBEE1648-7106-44A7-9649-6D9F6D58056E">Visual Studio 2008 SP1</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=AB99342F-5D1A-413D-8319-81DA479AB0D7">.NET Framework 3.5 SP1</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=F3FBB04E-92C2-4701-B4BA-92E26E408569">Visual Studio 2008 Express Editions with SP1</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=9E40A5B6-DA41-43A2-A06D-3CEE196BFE3D">Visual Studio Team System 2008 Team Foundation Server SP1</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=2E9A8C35-EB3D-43EB-9122-A5EC195CD7BB&amp;displaylang=en">Visual Studio 2008 Shell (integrated mode) with Service Pack 1</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=021B3BEE-B2AD-42A8-854A-C5EAEF69E927&amp;displaylang=en">Visual Studio 2008 Shell (isolated mode) with Service Pack 1</a></li>
</ul>
<p>I will talk about these update soon.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Famit.me%2Fvisual-studio-2008-and-net-35-sp1-now-available%2F89&amp;title=Visual%20Studio%202008%20and%20.NET%203.5%20SP1%20now%20available&amp;bodytext=Microsoft%20has%20released%20Service%20Pack%201%20for%20Visual%20Studio%202008%20and%20.NET%203.5.%0AThe%20download%20links%20are%3A%0A%0A%20%20Visual%20Studio%202008%20SP1%0A%0A%20%20.NET%20Framework%203.5%20SP1%0A%0A%20%20Visual%20Studio%202008%20Express%20Editions%20with%20SP1%0A%0A%20%20Visual%20Studio%20Team%20System%202008%20Team%20Foundation%20S" title="Digg"><img src="http://amit.me/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Famit.me%2Fvisual-studio-2008-and-net-35-sp1-now-available%2F89&amp;title=Visual%20Studio%202008%20and%20.NET%203.5%20SP1%20now%20available&amp;notes=Microsoft%20has%20released%20Service%20Pack%201%20for%20Visual%20Studio%202008%20and%20.NET%203.5.%0AThe%20download%20links%20are%3A%0A%0A%20%20Visual%20Studio%202008%20SP1%0A%0A%20%20.NET%20Framework%203.5%20SP1%0A%0A%20%20Visual%20Studio%202008%20Express%20Editions%20with%20SP1%0A%0A%20%20Visual%20Studio%20Team%20System%202008%20Team%20Foundation%20S" title="del.icio.us"><img src="http://amit.me/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Famit.me%2Fvisual-studio-2008-and-net-35-sp1-now-available%2F89&amp;t=Visual%20Studio%202008%20and%20.NET%203.5%20SP1%20now%20available" title="Facebook"><img src="http://amit.me/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Famit.me%2Fvisual-studio-2008-and-net-35-sp1-now-available%2F89&amp;title=Visual%20Studio%202008%20and%20.NET%203.5%20SP1%20now%20available&amp;annotation=Microsoft%20has%20released%20Service%20Pack%201%20for%20Visual%20Studio%202008%20and%20.NET%203.5.%0AThe%20download%20links%20are%3A%0A%0A%20%20Visual%20Studio%202008%20SP1%0A%0A%20%20.NET%20Framework%203.5%20SP1%0A%0A%20%20Visual%20Studio%202008%20Express%20Editions%20with%20SP1%0A%0A%20%20Visual%20Studio%20Team%20System%202008%20Team%20Foundation%20S" title="Google Bookmarks"><img src="http://amit.me/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="mailto:?subject=Visual%20Studio%202008%20and%20.NET%203.5%20SP1%20now%20available&amp;body=http%3A%2F%2Famit.me%2Fvisual-studio-2008-and-net-35-sp1-now-available%2F89" title="email"><img src="http://amit.me/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Visual%20Studio%202008%20and%20.NET%203.5%20SP1%20now%20available&amp;link=http%3A%2F%2Famit.me%2Fvisual-studio-2008-and-net-35-sp1-now-available%2F89" title="FriendFeed"><img src="http://amit.me/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Famit.me%2Fvisual-studio-2008-and-net-35-sp1-now-available%2F89&amp;title=Visual%20Studio%202008%20and%20.NET%203.5%20SP1%20now%20available&amp;source=Amit+Verma+A+walk+along+technology+river&amp;summary=Microsoft%20has%20released%20Service%20Pack%201%20for%20Visual%20Studio%202008%20and%20.NET%203.5.%0AThe%20download%20links%20are%3A%0A%0A%20%20Visual%20Studio%202008%20SP1%0A%0A%20%20.NET%20Framework%203.5%20SP1%0A%0A%20%20Visual%20Studio%202008%20Express%20Editions%20with%20SP1%0A%0A%20%20Visual%20Studio%20Team%20System%202008%20Team%20Foundation%20S" title="LinkedIn"><img src="http://amit.me/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Famit.me%2Fvisual-studio-2008-and-net-35-sp1-now-available%2F89&amp;title=Visual%20Studio%202008%20and%20.NET%203.5%20SP1%20now%20available" title="Live"><img src="http://amit.me/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Famit.me%2Fvisual-studio-2008-and-net-35-sp1-now-available%2F89" title="Technorati"><img src="http://amit.me/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Visual%20Studio%202008%20and%20.NET%203.5%20SP1%20now%20available%20-%20http%3A%2F%2Famit.me%2Fvisual-studio-2008-and-net-35-sp1-now-available%2F89" title="Twitter"><img src="http://amit.me/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://amit.me/visual-studio-2008-and-net-35-sp1-now-available/89/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Wiki</title>
		<link>http://amit.me/aspnet-wiki/80</link>
		<comments>http://amit.me/aspnet-wiki/80#comments</comments>
		<pubDate>Sun, 10 Aug 2008 17:22:44 +0000</pubDate>
		<dc:creator>Amit Verma</dc:creator>
				<category><![CDATA[WebDev]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.amit.me/blog/aspnet-wiki/</guid>
		<description><![CDATA[http://wiki.asp.net is a good resource for ASP.NET developers. You can browse the articles using tag cloud and TOC. You can also add and edit articles. Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://wiki.asp.net" target="_blank">http://wiki.asp.net</a> is a good resource for ASP.NET developers.</p>
<p>You can browse the articles using tag cloud and TOC.</p>
<p>
<img src="http://www.amit.me/blog/wp-content/uploads/2008/08/aspnet.jpg" width="450" height="82" alt="asp.net wiki tag cloud" /></p>
<p>You can also add and edit articles.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Famit.me%2Faspnet-wiki%2F80&amp;title=ASP.NET%20Wiki&amp;bodytext=http%3A%2F%2Fwiki.asp.net%20is%20a%20good%20resource%20for%20ASP.NET%20developers.%0AYou%20can%20browse%20the%20articles%20using%20tag%20cloud%20and%20TOC.%0A%0A%0AYou%20can%20also%20add%20and%20edit%20articles.%0A" title="Digg"><img src="http://amit.me/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Famit.me%2Faspnet-wiki%2F80&amp;title=ASP.NET%20Wiki&amp;notes=http%3A%2F%2Fwiki.asp.net%20is%20a%20good%20resource%20for%20ASP.NET%20developers.%0AYou%20can%20browse%20the%20articles%20using%20tag%20cloud%20and%20TOC.%0A%0A%0AYou%20can%20also%20add%20and%20edit%20articles.%0A" title="del.icio.us"><img src="http://amit.me/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Famit.me%2Faspnet-wiki%2F80&amp;t=ASP.NET%20Wiki" title="Facebook"><img src="http://amit.me/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Famit.me%2Faspnet-wiki%2F80&amp;title=ASP.NET%20Wiki&amp;annotation=http%3A%2F%2Fwiki.asp.net%20is%20a%20good%20resource%20for%20ASP.NET%20developers.%0AYou%20can%20browse%20the%20articles%20using%20tag%20cloud%20and%20TOC.%0A%0A%0AYou%20can%20also%20add%20and%20edit%20articles.%0A" title="Google Bookmarks"><img src="http://amit.me/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="mailto:?subject=ASP.NET%20Wiki&amp;body=http%3A%2F%2Famit.me%2Faspnet-wiki%2F80" title="email"><img src="http://amit.me/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=ASP.NET%20Wiki&amp;link=http%3A%2F%2Famit.me%2Faspnet-wiki%2F80" title="FriendFeed"><img src="http://amit.me/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Famit.me%2Faspnet-wiki%2F80&amp;title=ASP.NET%20Wiki&amp;source=Amit+Verma+A+walk+along+technology+river&amp;summary=http%3A%2F%2Fwiki.asp.net%20is%20a%20good%20resource%20for%20ASP.NET%20developers.%0AYou%20can%20browse%20the%20articles%20using%20tag%20cloud%20and%20TOC.%0A%0A%0AYou%20can%20also%20add%20and%20edit%20articles.%0A" title="LinkedIn"><img src="http://amit.me/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Famit.me%2Faspnet-wiki%2F80&amp;title=ASP.NET%20Wiki" title="Live"><img src="http://amit.me/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Famit.me%2Faspnet-wiki%2F80" title="Technorati"><img src="http://amit.me/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=ASP.NET%20Wiki%20-%20http%3A%2F%2Famit.me%2Faspnet-wiki%2F80" title="Twitter"><img src="http://amit.me/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://amit.me/aspnet-wiki/80/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Encoder</title>
		<link>http://amit.me/php-encoder/68</link>
		<comments>http://amit.me/php-encoder/68#comments</comments>
		<pubDate>Sat, 02 Aug 2008 10:16:27 +0000</pubDate>
		<dc:creator>Amit Verma</dc:creator>
				<category><![CDATA[WebDev]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.amit.me/blog/php-encoder/</guid>
		<description><![CDATA[Most of the PHP applications are Open Source but what if you want to share your PHP application but not the code? Nu-Coder is a PHP encoder. It converts the source code of PHP Script into compiled PHP bytecodes for both accelerated runtime performance and maximum security Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p></p><p>Most of the PHP applications are Open Source but what if you want to share your PHP application but not the code?</p>
<p><a href="http://www.nusphere.com/products/nucoder.htm" target="_blank">Nu-Coder</a> is a PHP encoder. It converts the source code of PHP Script into compiled PHP bytecodes for both accelerated runtime performance and maximum security</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Famit.me%2Fphp-encoder%2F68&amp;title=PHP%20Encoder&amp;bodytext=Most%20of%20the%20PHP%20applications%20are%20Open%20Source%20but%20what%20if%20you%20want%20to%20share%20your%20PHP%20application%20but%20not%20the%20code%3F%0ANu-Coder%20is%20a%20PHP%20encoder.%20It%20converts%20the%20source%20code%20of%20PHP%20Script%20into%20compiled%20PHP%20bytecodes%20for%20both%20accelerated%20runtime%20performanc" title="Digg"><img src="http://amit.me/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Famit.me%2Fphp-encoder%2F68&amp;title=PHP%20Encoder&amp;notes=Most%20of%20the%20PHP%20applications%20are%20Open%20Source%20but%20what%20if%20you%20want%20to%20share%20your%20PHP%20application%20but%20not%20the%20code%3F%0ANu-Coder%20is%20a%20PHP%20encoder.%20It%20converts%20the%20source%20code%20of%20PHP%20Script%20into%20compiled%20PHP%20bytecodes%20for%20both%20accelerated%20runtime%20performanc" title="del.icio.us"><img src="http://amit.me/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Famit.me%2Fphp-encoder%2F68&amp;t=PHP%20Encoder" title="Facebook"><img src="http://amit.me/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Famit.me%2Fphp-encoder%2F68&amp;title=PHP%20Encoder&amp;annotation=Most%20of%20the%20PHP%20applications%20are%20Open%20Source%20but%20what%20if%20you%20want%20to%20share%20your%20PHP%20application%20but%20not%20the%20code%3F%0ANu-Coder%20is%20a%20PHP%20encoder.%20It%20converts%20the%20source%20code%20of%20PHP%20Script%20into%20compiled%20PHP%20bytecodes%20for%20both%20accelerated%20runtime%20performanc" title="Google Bookmarks"><img src="http://amit.me/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="mailto:?subject=PHP%20Encoder&amp;body=http%3A%2F%2Famit.me%2Fphp-encoder%2F68" title="email"><img src="http://amit.me/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=PHP%20Encoder&amp;link=http%3A%2F%2Famit.me%2Fphp-encoder%2F68" title="FriendFeed"><img src="http://amit.me/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Famit.me%2Fphp-encoder%2F68&amp;title=PHP%20Encoder&amp;source=Amit+Verma+A+walk+along+technology+river&amp;summary=Most%20of%20the%20PHP%20applications%20are%20Open%20Source%20but%20what%20if%20you%20want%20to%20share%20your%20PHP%20application%20but%20not%20the%20code%3F%0ANu-Coder%20is%20a%20PHP%20encoder.%20It%20converts%20the%20source%20code%20of%20PHP%20Script%20into%20compiled%20PHP%20bytecodes%20for%20both%20accelerated%20runtime%20performanc" title="LinkedIn"><img src="http://amit.me/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Famit.me%2Fphp-encoder%2F68&amp;title=PHP%20Encoder" title="Live"><img src="http://amit.me/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Famit.me%2Fphp-encoder%2F68" title="Technorati"><img src="http://amit.me/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=PHP%20Encoder%20-%20http%3A%2F%2Famit.me%2Fphp-encoder%2F68" title="Twitter"><img src="http://amit.me/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://amit.me/php-encoder/68/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
