<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Naveen P.N</title>
	<atom:link href="http://naveenpn.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://naveenpn.wordpress.com</link>
	<description>Just another Blog to  play with programming</description>
	<lastBuildDate>Fri, 23 Oct 2009 01:09:50 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='naveenpn.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/6941dafd1d1cba0d5e56471f6151753c?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Naveen P.N</title>
		<link>http://naveenpn.wordpress.com</link>
	</image>
			<item>
		<title>Project-Based Development and Projectless-Based Development</title>
		<link>http://naveenpn.wordpress.com/2009/10/23/project-based-development-and-projectless-based-development/</link>
		<comments>http://naveenpn.wordpress.com/2009/10/23/project-based-development-and-projectless-based-development/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 01:09:50 +0000</pubDate>
		<dc:creator>Naveen P.N</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://naveenpn.wordpress.com/?p=371</guid>
		<description><![CDATA[Introduction
Web Project can be developed of two types
a)      Projectless Based Development
b)      Project Based Development or web project
Project less Based Development
Creating websites of this form is called project less applications. It has its own advantages over Project Based Development.

The advantages include
a) It simplifies deployment: We can simply copy the files in the website directory to the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=371&subd=naveenpn&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong><span style="text-decoration:underline;">Introduction</span></strong></p>
<p>Web Project can be developed of two types</p>
<p>a)      Projectless Based Development</p>
<p>b)      Project Based Development or web project</p>
<p><strong><span style="text-decoration:underline;">Project less Based Development</span></strong></p>
<p>Creating websites of this form is called project less applications. It has its own advantages over Project Based Development.</p>
<p><img class="aligncenter size-full wp-image-372" title="1" src="http://naveenpn.files.wordpress.com/2009/10/1.jpg?w=221&#038;h=458" alt="1" width="221" height="458" /></p>
<p>The advantages include</p>
<p><strong>a) </strong><strong>It simplifies deployment:</strong> We can simply copy the files in the website directory to the web server.<strong><span style="text-decoration:underline;"> </span></strong></p>
<p><strong>b) </strong><strong>It simplifies file management:</strong> Adding , deleting and  moving files  is very easy u can just delete, add or move a web page ,there is no need to go through Visual Studio or edit the project file.<strong><span style="text-decoration:underline;"> </span></strong></p>
<p><strong>c) </strong><strong>It simplifies team collaboration: </strong>Each team can work independently on different pages.<strong><span style="text-decoration:underline;"> </span></strong></p>
<p>d)     <strong>It simplifies debugging:</strong> Creating a web project ,you must recompile the entire application when you change a single file With project less development, each</p>
<p>page is compiled separately, and the page is only compiled when you request it for the first time.<strong><span style="text-decoration:underline;"> </span></strong></p>
<p><strong><span style="text-decoration:underline;">Project Based Development or Web Project</span></strong></p>
<p>Creating project of this form is called Project Based Development or simply Web Project. If we create application of this form Visual Studio generates a number of extra files, including .csproj and .csproj.user project files and .sln solution file.</p>
<p><img class="aligncenter size-full wp-image-373" title="2" src="http://naveenpn.files.wordpress.com/2009/10/2.jpg?w=225&#038;h=458" alt="2" width="225" height="458" /></p>
<p><img class="aligncenter size-full wp-image-374" title="3" src="http://naveenpn.files.wordpress.com/2009/10/3.jpg?w=490&#038;h=311" alt="3" width="490" height="311" /></p>
<p>When you build your application, Visual Studio generates temporary files, which is places in the Obj subdirectory, and one or more .pdb files (in the Bin subdirectory) with debugging symbols. None of these files should be deployed to the web server when your web application is complete. Furthermore, none of the C# source code files (files with the extension .cs) should be deployed, because Visual Studio recompiles them into a DLL assembly.</p>
<p>However both are same once they are deployed to the web server,but they differ in their structure .The difference include</p>
<p>a)      <strong>Compilation:</strong> Web projects are compiled by Visual Studio and not ASP.NET when they run. All the web pages classes is combined into a single assembly that has the name of web project(like web project.dll);</p>
<p><img class="aligncenter size-full wp-image-375" title="4" src="http://naveenpn.files.wordpress.com/2009/10/4.jpg?w=408&#038;h=90" alt="4" width="408" height="90" /></p>
<p>b)      <strong>Code-behind</strong>: The web pages also uses code behind file however they include one additional file with an extension .aspx.designer.cs.</p>
<p><img class="aligncenter size-full wp-image-377" title="5" src="http://naveenpn.files.wordpress.com/2009/10/51.jpg?w=205&#038;h=367" alt="5" width="205" height="367" /></p>
<p>c)      <strong>Assembly references</strong>: In a project less website ,all the assembly references are recorded in the web.config file</p>
<p><strong>Other posts</strong></p>
<p><strong>* </strong><a href="http://naveenpn.wordpress.com/2009/10/23/using-c-and-vb-classed-together-in-the-app_code-folder/" target="_blank">Using C# and VB classed together in the App_Code folder :</a></p>
<p>*   <a href="http://naveenpn.wordpress.com/2009/10/08/asp-net-application-folders/" target="_blank">ASP.NET Application Folders</a></p>
<p>*   <a href="http://naveenpn.wordpress.com/2009/10/05/creating-dynamic-linking-library-using-asp-net/" target="_blank">Creating Dynamic Linking Library using ASP.NET</a></p>
<p>*   <a href="http://naveenpn.wordpress.com/2009/09/27/vb-style-calendar-in-asp-net/" target="_blank">VB Style Calendar in ASP.NET</a></p>
<p>* <a href="http://naveenpn.wordpress.com/2009/09/27/sending-sms-from-asp-net-application/" target="_blank"> Sending SMS from ASP.NET Application</a></p>
<p>*   <a href="http://naveenpn.wordpress.com/2009/09/13/view-state/" target="_blank">View State</a></p>
<p>*   <a href="http://naveenpn.wordpress.com/2008/06/11/aspnet/" target="_blank">What is the difference between Server.Transfer and Response.Redirect?</a></p>
<p>*   <a href="http://naveenpn.wordpress.com/2009/08/27/text-to-speech-in-asp-net/" target="_blank">Text to Speech in ASP.NET</a></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong></p>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">*  Using C# and VB classed together in the App_Code folder :</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">http://naveenpn.wordpress.com/2009/10/23/using-c-and-vb-classed-together-in-the-app_code-folder/</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">*  ASP.NET Application Folders</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">http://naveenpn.wordpress.com/2009/10/08/asp-net-application-folders/</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">*  Creating Dynamic Linking Library using ASP.NET</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">http://naveenpn.wordpress.com/2009/10/05/creating-dynamic-linking-library-using-asp-net/</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">*  VB Style Calendar in ASP.NET</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">http://naveenpn.wordpress.com/2009/09/27/vb-style-calendar-in-asp-net/</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">*  Sending SMS from ASP.NET Application</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">http://naveenpn.wordpress.com/2009/09/27/sending-sms-from-asp-net-application/</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">* View State</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">http://naveenpn.wordpress.com/2009/09/13/view-state/</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">*  What is the difference between Server.Transfer and Response.Redirect?</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">http://naveenpn.wordpress.com/2008/06/11/aspnet/</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">*  Text to Speech in ASP.NET</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">http://naveenpn.wordpress.com/2009/08/27/text-to-speech-in-asp-net/</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">AJAX Control Toolkit</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">*  Traditional Page Updates VS AJAX Page Updates</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:2255px;width:1px;height:1px;">http://naveenpn.wordpress.com/2009/08/29/traditional-page-updates-vs-ajax-page-updates/</div>
<p></strong></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/naveenpn.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/naveenpn.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/naveenpn.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/naveenpn.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/naveenpn.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/naveenpn.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/naveenpn.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/naveenpn.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/naveenpn.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/naveenpn.wordpress.com/371/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=371&subd=naveenpn&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://naveenpn.wordpress.com/2009/10/23/project-based-development-and-projectless-based-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Naveen P.N</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/1.jpg" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/2.jpg" medium="image">
			<media:title type="html">2</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/3.jpg" medium="image">
			<media:title type="html">3</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/4.jpg" medium="image">
			<media:title type="html">4</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/51.jpg" medium="image">
			<media:title type="html">5</media:title>
		</media:content>
	</item>
		<item>
		<title>Using C# and VB classed together in the App_Code folder</title>
		<link>http://naveenpn.wordpress.com/2009/10/23/using-c-and-vb-classed-together-in-the-app_code-folder/</link>
		<comments>http://naveenpn.wordpress.com/2009/10/23/using-c-and-vb-classed-together-in-the-app_code-folder/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 00:24:40 +0000</pubDate>
		<dc:creator>Naveen P.N</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://naveenpn.wordpress.com/?p=367</guid>
		<description><![CDATA[Introduction
Hi in this article I demonstrate how to use two different classes together in ASP.NET application. As we know ASP.NET application supports more than 24 languages we don’t know how to use two different languages in one single application. One important thing mixing of classes coded in different languages is not allowed with default settings. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=367&subd=naveenpn&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong><span style="text-decoration:underline;">Introduction</span></strong></p>
<p>Hi in this article I demonstrate how to use two different classes together in ASP.NET application. As we know ASP.NET application supports more than 24 languages we don’t know how to use two different languages in one single application. One important thing mixing of classes coded in different languages is not allowed with default settings. You can, however, configure your web.config file to get this done. This article is going to explain you that how one can do that.</p>
<p><strong><span style="text-decoration:underline;">Creating Sub folders and classes</span></strong></p>
<p>Create two separate folders one for C# code and one for VB code .Without modifying web.config file if we compile we get an error.</p>
<p><img class="aligncenter size-full wp-image-365" title="23" src="http://naveenpn.files.wordpress.com/2009/10/23.jpg?w=239&#038;h=275" alt="23" width="239" height="275" /></p>
<p><img class="aligncenter size-full wp-image-366" title="231" src="http://naveenpn.files.wordpress.com/2009/10/231.jpg?w=629&#038;h=138" alt="231" width="629" height="138" /></p>
<p>To solve this we should modify web.config file.</p>
<p><img class="aligncenter size-full wp-image-368" title="23b" src="http://naveenpn.files.wordpress.com/2009/10/23b.jpg?w=336&#038;h=208" alt="23b" width="336" height="208" /></p>
<p><span style="color:#800000;"> protected void CSharpbtn_Click(object sender, EventArgs e)</span></p>
<p><span style="color:#800000;"> {</span></p>
<p><span style="color:#800000;"> int a = MathematicsClassCSharp.addition(2, 2);</span></p>
<p><span style="color:#800000;"> Label1.Text = a.ToString();</span></p>
<p><span style="color:#800000;"> }</span></p>
<p><span style="color:#800000;"> protected void VBbtn_Click(object sender, EventArgs e)</span></p>
<p><span style="color:#800000;"> {</span></p>
<p><span style="color:#800000;"> int a1 = MathematicsClassVB.addition(1,1);</span></p>
<p><span style="color:#800000;"> Label1.Text = a1.ToString();</span></p>
<p><span style="color:#800000;"> }</span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/naveenpn.wordpress.com/367/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/naveenpn.wordpress.com/367/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/naveenpn.wordpress.com/367/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/naveenpn.wordpress.com/367/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/naveenpn.wordpress.com/367/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/naveenpn.wordpress.com/367/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/naveenpn.wordpress.com/367/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/naveenpn.wordpress.com/367/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/naveenpn.wordpress.com/367/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/naveenpn.wordpress.com/367/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=367&subd=naveenpn&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://naveenpn.wordpress.com/2009/10/23/using-c-and-vb-classed-together-in-the-app_code-folder/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Naveen P.N</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/23.jpg" medium="image">
			<media:title type="html">23</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/231.jpg" medium="image">
			<media:title type="html">231</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/23b.jpg" medium="image">
			<media:title type="html">23b</media:title>
		</media:content>
	</item>
		<item>
		<title>Disabling Copy Paste in a TextBox</title>
		<link>http://naveenpn.wordpress.com/2009/10/08/disabling-copy-paste-in-a-textbox/</link>
		<comments>http://naveenpn.wordpress.com/2009/10/08/disabling-copy-paste-in-a-textbox/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 23:19:06 +0000</pubDate>
		<dc:creator>Naveen P.N</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://naveenpn.wordpress.com/?p=356</guid>
		<description><![CDATA[Hi this article is more or less similar to the last article “Restricting the mouse click on a web page” the logic is the same with little intelligence. In this article I will disable the Copy, Paste and Ctrl Functionality of a TextBox, before reading this article I request you to please check the previous [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=356&subd=naveenpn&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi this article is more or less similar to the last article “Restricting the mouse click on a web page” the logic is the same with little intelligence. In this article I will disable the Copy, Paste and Ctrl Functionality of a TextBox, before reading this article I request you to please check the previous article for better understanding.</p>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;head runat=&#8221;server&#8221;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;title&gt;Untitled Page&lt;/title&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;Restrict Copy and Paste.js&#8221;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/script&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/head&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;body&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;form id=&#8221;form1&#8243; runat=&#8221;server&#8221;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;pre&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">Right Click Disabled   : &lt;asp:TextBox ID=&#8221;TextBoxCopy&#8221; runat=&#8221;server&#8221;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">onMouseDown=&#8221;DisableRightClick(event)&#8221;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/asp:TextBox&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">Ctrl Key Disabled      : &lt;asp:TextBox ID=&#8221;TextBox2&#8243; runat=&#8221;server&#8221;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">onKeyDown=&#8221;return DisableCtrlKey(event)&#8221;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/asp:TextBox&gt;&lt;br /&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">Copy and Paste Disabled: &lt;asp:TextBox ID=&#8221;TextBox1&#8243; runat=&#8221;server&#8221;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">oncopy=&#8221;return false&#8221; onpaste=&#8221;return false&#8221;                    oncut=&#8221;return false&#8221;&gt;       &lt;/asp:TextBox&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/pre&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/form&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/body&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/html&gt;</div>
<p><span style="text-decoration:underline;"><span style="color:#0000ff;">Restrict Copy and Paste.aspx</span></span></p>
<address><span style="color:#800000;"></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;"><span style="font-style:normal;">&lt;</span></span><span style="font-size:10pt;line-height:115%;font-family:&quot;color:#a31515;"><span style="font-style:normal;">html</span></span><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">xmlns</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;</span><span style="font-style:normal;"></span></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;"><span style="font-style:normal;">&lt;</span></span><span style="font-size:10pt;line-height:115%;font-family:&quot;color:#a31515;"><span style="font-style:normal;">head</span></span><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">runat</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;server&#8221;&gt;</span><span style="font-style:normal;"></span></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:blue;"><span style="font-style:normal;">&lt;</span></span><span style="color:#a31515;"><span style="font-style:normal;">title</span></span><span style="color:blue;"><span style="font-style:normal;">&gt;</span></span><span style="font-style:normal;">Untitled Page</span><span style="color:blue;"><span style="font-style:normal;">&lt;/</span></span><span style="color:#a31515;"><span style="font-style:normal;">title</span></span><span style="color:blue;"><span style="font-style:normal;">&gt;</span><span style="font-style:normal;"></span></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:blue;"><span style="font-style:normal;">&lt;</span></span><span style="color:#a31515;"><span style="font-style:normal;">script</span></span><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">type</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;text/javascript&#8221;</span></span><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">src</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;Restrict Copy and Paste.js&#8221;&gt;</span><span style="font-style:normal;"></span></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:blue;"><span style="font-style:normal;">&lt;/</span></span><span style="color:#a31515;"><span style="font-style:normal;">script</span></span><span style="color:blue;"><span style="font-style:normal;">&gt;</span><span style="font-style:normal;"></span></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;"><span style="font-style:normal;">&lt;/</span></span><span style="font-size:10pt;line-height:115%;font-family:&quot;color:#a31515;"><span style="font-style:normal;">head</span></span><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;"><span style="font-style:normal;">&gt;</span><span style="font-style:normal;"></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;"><span style="font-style:normal;">&lt;</span></span><span style="font-size:10pt;line-height:115%;font-family:&quot;color:#a31515;"><span style="font-style:normal;">body</span></span><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;"><span style="font-style:normal;">&gt;</span><span style="font-style:normal;"></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:blue;"><span style="font-style:normal;">&lt;</span></span><span style="color:#a31515;"><span style="font-style:normal;">form</span></span><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">id</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;form1&#8243;</span></span><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">runat</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;server&#8221;&gt;</span></span><span style="font-style:normal;"> </span><span style="font-style:normal;"></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> <em><span style="font-style:normal;"> </span><span style="color:blue;"><span style="font-style:normal;">&lt;</span></span><span style="color:#a31515;"><span style="font-style:normal;">pre</span></span><span style="color:blue;"><span style="font-style:normal;">&gt;</span></span></em></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;">Right Click Disabled   : </span><span style="color:blue;"><span style="font-style:normal;">&lt;</span></span><span style="color:#a31515;"><span style="font-style:normal;">asp</span></span><span style="color:blue;"><span style="font-style:normal;">:</span></span><span style="color:#a31515;"><span style="font-style:normal;">TextBox</span></span><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">ID</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;TextBoxCopy&#8221;</span></span><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">runat</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;server&#8221;</span></span><span style="font-style:normal;"> </span><span style="font-style:normal;"></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">onMouseDown</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;DisableRightClick(event)&#8221;&gt;</span><span style="font-style:normal;"></span></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:blue;"><span style="font-style:normal;">&lt;/</span></span><span style="color:#a31515;"><span style="font-style:normal;">asp</span></span><span style="color:blue;"><span style="font-style:normal;">:</span></span><span style="color:#a31515;"><span style="font-style:normal;">TextBox</span></span><span style="color:blue;"><span style="font-style:normal;">&gt;</span><span style="font-style:normal;"></span></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;">Ctrl Key Disabled      : </span><span style="color:blue;"><span style="font-style:normal;">&lt;</span></span><span style="color:#a31515;"><span style="font-style:normal;">asp</span></span><span style="color:blue;"><span style="font-style:normal;">:</span></span><span style="color:#a31515;"><span style="font-style:normal;">TextBox</span></span><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">ID</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;TextBox2&#8243;</span></span><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">runat</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;server&#8221;</span></span><span style="font-style:normal;"> </span><span style="font-style:normal;"></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">onKeyDown</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;return DisableCtrlKey(event)&#8221;&gt;</span></span><span style="font-style:normal;"> </span><span style="font-style:normal;"></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:blue;"><span style="font-style:normal;">&lt;/</span></span><span style="color:#a31515;"><span style="font-style:normal;">asp</span></span><span style="color:blue;"><span style="font-style:normal;">:</span></span><span style="color:#a31515;"><span style="font-style:normal;">TextBox</span></span><span style="color:blue;"><span style="font-style:normal;">&gt;&lt;</span></span><span style="color:#a31515;"><span style="font-style:normal;">br</span></span><span style="font-style:normal;"> </span><span style="color:blue;"><span style="font-style:normal;">/&gt;</span></span><span style="font-style:normal;"> </span><span style="font-style:normal;"></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;">Copy and Paste Disabled: </span><span style="color:blue;"><span style="font-style:normal;">&lt;</span></span><span style="color:#a31515;"><span style="font-style:normal;">asp</span></span><span style="color:blue;"><span style="font-style:normal;">:</span></span><span style="color:#a31515;"><span style="font-style:normal;">TextBox</span></span><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">ID</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;TextBox1&#8243;</span></span><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">runat</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;server&#8221;</span></span><span style="font-style:normal;"> </span><span style="font-style:normal;"></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">oncopy</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;return false&#8221;</span></span><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">onpaste</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;return false&#8221;</span></span><span style="font-style:normal;"> </span><span style="color:red;"><span style="font-style:normal;">oncut</span></span><span style="color:blue;"><span style="font-style:normal;">=&#8221;return false&#8221;&gt;</span></span><span style="font-style:normal;"> </span><span style="color:blue;"><span style="font-style:normal;">&lt;/</span></span><span style="color:#a31515;"><span style="font-style:normal;">asp</span></span><span style="color:blue;"><span style="font-style:normal;">:</span></span><span style="color:#a31515;"><span style="font-style:normal;">TextBox</span></span><span style="color:blue;"><span style="font-style:normal;">&gt;</span></span><span style="font-style:normal;"> </span><span style="font-style:normal;"></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:blue;"><span style="font-style:normal;">&lt;/</span></span><span style="color:#a31515;"><span style="font-style:normal;">pre</span></span><span style="color:blue;"><span style="font-style:normal;">&gt;</span><span style="font-style:normal;"></span></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:blue;"><span style="font-style:normal;">&lt;/</span></span><span style="color:#a31515;"><span style="font-style:normal;">form</span></span><span style="color:blue;"><span style="font-style:normal;">&gt;</span><span style="font-style:normal;"></span></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;"><span style="font-style:normal;">&lt;/</span></span><span style="font-size:10pt;line-height:115%;font-family:&quot;color:#a31515;"><span style="font-style:normal;">body</span></span><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;"><span style="font-style:normal;">&gt;</span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;"><span style="font-style:normal;"> </span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;">var</span><span style="font-size:10pt;line-height:115%;font-family:&quot;"> buttonright = 2; <span style="color:green;">// button right</span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;">function</span><span style="font-size:10pt;line-height:115%;font-family:&quot;"> DisableRightClick(event)</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;">{</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:green;">//For mouse right click </span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span> </span><span style="color:blue;">if</span> (event.button==buttonright)</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span> </span>{</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span> </span>alert(<span style="color:#A31515;">&#8220;Right Clicking not allowed!&#8221;</span>);</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span> </span>}</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;">}</span></p>
<p class="MsoNormal">&lt;/html&gt;</p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="color:#0000ff;font-family:'Courier New';font-style:normal;line-height:14px;"><span style="text-decoration:underline;"><span style="font-size:12pt;line-height:115%;font-family:&quot;color:blue;">Restrict Copy and Paste.js</span></span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;">function</span><span style="font-size:10pt;line-height:115%;font-family:&quot;"> DisableCtrlKey(e)</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;">{</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span> </span><span style="color:blue;">var</span> code = (document.all) ? event.keyCode:e.which;</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span> </span><span style="color:blue;">var</span> message = <span style="color:#A31515;">&#8220;Ctrl key functionality is disabled!&#8221;</span>;<span style="color:green;">// look for CTRL key press</span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span> </span><span style="color:blue;">if</span> (parseInt(code)==17)</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span> </span>{</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span> </span>alert(message);</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span> </span>window.event.returnValue = <span style="color:blue;">false</span>;</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span> </span>}</span></p>
<p><span style="font-size:10pt;line-height:115%;font-family:&quot;">}</span></span></address>
<address><span style="font-family:'Courier New';color:#0000ff;"><span style="font-style:normal;line-height:14px;"><br />
</span></span></address>
<address><img class="aligncenter size-full wp-image-357" title="text1" src="http://naveenpn.files.wordpress.com/2009/10/text1.jpg?w=597&#038;h=308" alt="text1" width="597" height="308" /></address>
<address><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;"><span style="font-style:normal;"></p>
<p class="MsoNormal"><span style="font-family:'Times New Roman', serif;"><span style="line-height:18px;text-decoration:underline;font-size:medium;"><br />
</span></span></p>
<p class="MsoNormal"><span style="text-decoration:underline;"><span style="font-size:12pt;line-height:115%;font-family:&quot;color:blue;"><img class="aligncenter size-full wp-image-358" title="text2" src="http://naveenpn.files.wordpress.com/2009/10/text2.jpg?w=598&#038;h=291" alt="text2" width="598" height="291" /><br />
</span></span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="text-decoration:underline;"><span style="font-size:12pt;line-height:115%;font-family:&quot;color:blue;"> </span></span></p>
<p><span style="text-decoration:underline;"></p>
<p class="MsoNormal"><span style="font-family:'Courier New';font-size:small;"><span style="line-height:14px;"><br />
</span></span></p>
<p></span></span><span style="text-decoration:underline;"> </span></span></address>
<p><a href="http://www.box.net/shared/z5vnfmz7a9">Download Code with Article</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/naveenpn.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/naveenpn.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/naveenpn.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/naveenpn.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/naveenpn.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/naveenpn.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/naveenpn.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/naveenpn.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/naveenpn.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/naveenpn.wordpress.com/356/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=356&subd=naveenpn&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://naveenpn.wordpress.com/2009/10/08/disabling-copy-paste-in-a-textbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Naveen P.N</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/text1.jpg" medium="image">
			<media:title type="html">text1</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/text2.jpg" medium="image">
			<media:title type="html">text2</media:title>
		</media:content>
	</item>
		<item>
		<title>Restricting Mouse Click on a web page</title>
		<link>http://naveenpn.wordpress.com/2009/10/08/restricting-mouse-click-on-a-web-page/</link>
		<comments>http://naveenpn.wordpress.com/2009/10/08/restricting-mouse-click-on-a-web-page/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 22:58:42 +0000</pubDate>
		<dc:creator>Naveen P.N</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[No mouse click in web page]]></category>
		<category><![CDATA[Restricting Mouse Click on a web page]]></category>

		<guid isPermaLink="false">http://naveenpn.wordpress.com/?p=347</guid>
		<description><![CDATA[Hi in this article I will explain how to restrict mouse click on a web page ,so that user will not save images just like orkut which restrict user from saving images.Actually this idea I got from my friends project whose one of the module was restricting user from mouse click.I though to share the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=347&subd=naveenpn&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi in this article I will explain how to restrict mouse click on a web page ,so that user will not save images just like orkut which restrict user from saving images.Actually this idea I got from my friends project whose one of the module was restricting user from mouse click.I though to share the small snippet with you people ……….check out and please give your valuable suggestion.</p>
<p><img class="aligncenter size-full wp-image-348" title="Restrict Mouse Right Click on a web page1" src="http://naveenpn.files.wordpress.com/2009/10/j1.jpg?w=369&#038;h=291" alt="Restrict Mouse Right Click on a web page1" width="369" height="291" /></p>
<p>The trick is very simple ,it is all done with little JavaScript .</p>
<address><span style="text-decoration:underline;"><span style="font-size:12pt;font-family:&quot;color:#3333ff;"><span style="font-style:normal;"><span style="color:#0000ff;">DisableRightClick.js</span></span></span></span></address>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">DisableRightClick.js</div>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;">document.onmousedown = mouseDown;</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;">var</span><span style="font-size:10pt;line-height:115%;font-family:&quot;"> buttonright = 2; <span style="color:green;">// button right</span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;">var</span><span style="font-size:10pt;line-height:115%;font-family:&quot;"> msg =<span style="color:#a31515;">&#8220;Right Click is not Allowed&#8221;</span>;</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;">function</span><span style="font-size:10pt;line-height:115%;font-family:&quot;"> mouseDown(e) </span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;">{ </span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> <span style="color:blue;">if</span> (event.button==buttonright) </span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> {</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> alert(msg);</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> } </span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;">}</span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> </span></p>
<address><span style="text-decoration:underline;"><span style="font-size:12pt;font-family:&quot;color:#3333ff;"><span style="font-style:normal;"><span style="color:#0000ff;">DisableRightClick.aspx</span></span></span></span></address>
<address><span style="text-decoration:underline;"><span style="font-size:12pt;font-family:'Times New Roman', serif;color:#3333ff;"><span style="text-decoration:underline;"> </span><br />
<address>
<table class="MsoTableGrid" style="border-collapse:collapse;border:none;" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="width:6.65in;border:solid black 1pt;padding:0 5.4pt;" width="638" valign="top">
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:#a31515;">&lt;html</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:red;">xmlns</span><span style="color:blue;">=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;</span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">&lt;</span><span style="font-size:10pt;font-family:&quot;color:#a31515;">head</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:red;">runat</span><span style="color:blue;">=&#8221;server&#8221;&gt;</span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;"><span> </span><span style="color:blue;">&lt;</span><span style="color:#a31515;">title</span><span style="color:blue;">&gt;</span>Untitled   Page<span style="color:blue;">&lt;/</span><span style="color:#a31515;">title</span><span style="color:blue;">&gt;</span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;"><span> </span><span style="color:blue;">&lt;</span><span style="color:#a31515;">script</span> <span style="color:red;">type</span><span style="color:blue;">=&#8221;text/javascript&#8221;</span> <span style="color:red;">src</span><span style="color:blue;">=&#8221;DisableRightClick.js.js&#8221;&gt;</span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;"><span> </span><span style="color:blue;">&lt;/</span><span style="color:#a31515;">script</span><span style="color:blue;">&gt;</span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">&lt;/</span><span style="font-size:10pt;font-family:&quot;color:#a31515;">head</span><span style="font-size:10pt;font-family:&quot;color:blue;">&gt;</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">&lt;</span><span style="font-size:10pt;font-family:&quot;color:#a31515;">body</span><span style="font-size:10pt;font-family:&quot;color:blue;">&gt;</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;"><span> </span><span style="color:blue;">&lt;</span><span style="color:#a31515;">form</span> <span style="color:red;">id</span><span style="color:blue;">=&#8221;form1&#8243;</span> <span style="color:red;">runat</span><span style="color:blue;">=&#8221;server&#8221;&gt;</span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;"><span> </span><span style="color:blue;">&lt;</span><span style="color:#a31515;">div</span><span style="color:blue;">&gt;</span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;"><span> </span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;"><span> </span><span style="color:blue;">&lt;/</span><span style="color:#a31515;">div</span><span style="color:blue;">&gt;</span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;"><span> </span><span style="color:blue;">&lt;/</span><span style="color:#a31515;">form</span><span style="color:blue;">&gt;</span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;"><span> </span><span style="color:blue;">&lt;</span><span style="color:#a31515;">p</span><span style="color:blue;">&gt;</span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;"><span> </span><span style="color:blue;">&lt;</span><span style="color:#a31515;">img</span> <span style="color:red;">alt</span><span style="color:blue;">=&#8221;"</span> <span style="color:red;">src</span><span style="color:blue;">=&#8221;images/naveen.gif&#8221;</span> <span style="color:red;">style</span><span style="color:blue;">=&#8221;</span><span style="color:red;">width</span>: <span style="color:blue;">107px</span>; <span style="color:red;">height</span>: <span style="color:blue;">118px&#8221;</span> <span style="color:blue;">/&gt;&lt;/</span><span style="color:#a31515;">p</span><span style="color:blue;">&gt;</span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">&lt;/</span><span style="font-size:10pt;font-family:&quot;color:#a31515;">body</span><span style="font-size:10pt;font-family:&quot;color:blue;">&gt;</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">&lt;/</span><span style="font-size:10pt;font-family:&quot;color:#a31515;">html</span><span style="font-size:10pt;font-family:&quot;color:blue;">&gt;</span><span style="font-size:12pt;font-family:&quot;color:black;"></span></p>
</td>
</tr>
</tbody>
</table>
<p><span style="font-family:'Courier New';color:#0000ff;font-size:small;"><span style="line-height:14px;"><br />
</span></span></p>
</address>
<p style="text-decoration:underline;">
<p></span></span></address>
<address></address>
<address><span style="font-size:10pt;line-height:115%;font-family:'Courier New';color:blue;"><img class="aligncenter size-full wp-image-349" title="Restrict Mouse Right Click on a web page2" src="http://naveenpn.files.wordpress.com/2009/10/j2.jpg?w=593&#038;h=291" alt="Restrict Mouse Right Click on a web page2" width="593" height="291" /> </span></address>
<p><a href="http://www.box.net/shared/bxg95jnesv">Dowlnload Code with Article</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/naveenpn.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/naveenpn.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/naveenpn.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/naveenpn.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/naveenpn.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/naveenpn.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/naveenpn.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/naveenpn.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/naveenpn.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/naveenpn.wordpress.com/347/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=347&subd=naveenpn&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://naveenpn.wordpress.com/2009/10/08/restricting-mouse-click-on-a-web-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Naveen P.N</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/j1.jpg" medium="image">
			<media:title type="html">Restrict Mouse Right Click on a web page1</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/j2.jpg" medium="image">
			<media:title type="html">Restrict Mouse Right Click on a web page2</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP.NET Application Folders</title>
		<link>http://naveenpn.wordpress.com/2009/10/08/asp-net-application-folders/</link>
		<comments>http://naveenpn.wordpress.com/2009/10/08/asp-net-application-folders/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 22:35:28 +0000</pubDate>
		<dc:creator>Naveen P.N</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://naveenpn.wordpress.com/?p=339</guid>
		<description><![CDATA[Hi in this article I will explain application folders in ASP.NET 2.0.You would have observed when you create ASP.NET Application you can add folders called application folders, these are special folders in asp.net each one has special purpose and meaning. ASP.NET 2.0 has the capability to automatically precompiled ASP.NET application whereas in 1.0 and 1.1 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=339&subd=naveenpn&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">Hi in this article I will explain application folders in ASP.NET 2.0.You would have observed when you create ASP.NET Application you can add folders called application folders, these are special folders in asp.net each one has special purpose and meaning. ASP.NET 2.0 has the capability to automatically precompiled ASP.NET application whereas in 1.0 and 1.1 frameworks everything was compiling into DLL. This is not the case in ASP.NET 2.0 framework this is because of its defined folder structure Let us now examine the usage of each folder in detail.</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">There are 6 folders which can be added</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">a)<span style="white-space:pre;"> </span>\App_Code</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">b)<span style="white-space:pre;"> </span>\App_Data</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">c)<span style="white-space:pre;"> </span>\App_Themes</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">d)<span style="white-space:pre;"> </span>\App_GlobalResources</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">e)<span style="white-space:pre;"> </span>\App_localResources</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">f)<span style="white-space:pre;"> </span>\App_WebReferences</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">g)<span style="white-space:pre;"> </span>\App_Browsers</div>
<p>Hi in this article I will explain application folders in ASP.NET 2.0.You would have observed when you create ASP.NET Application you can add folders called application folders, these are special folders in asp.net each one has special purpose and meaning. ASP.NET 2.0 has the capability to automatically precompiled ASP.NET application whereas in 1.0 and 1.1 frameworks everything was compiling into DLL. This is not the case in ASP.NET 2.0 framework this is because of its defined folder structure Let us now examine the usage of each folder in detail.</p>
<p>There are 6 folders which can be added</p>
<p>a)<span style="white-space:pre;"> </span>\App_Code</p>
<p>b)<span style="white-space:pre;"> </span>\App_Data</p>
<p>c)<span style="white-space:pre;"> </span>\App_Themes</p>
<p>d)<span style="white-space:pre;"> </span>\App_GlobalResources</p>
<p>e)<span style="white-space:pre;"> </span>\App_localResources</p>
<p>f)<span style="white-space:pre;"> </span>\App_WebReferences</p>
<p>g)<span style="white-space:pre;"> </span>\App_Browsers</p>
<div><img class="aligncenter size-full wp-image-340" title="app1" src="http://naveenpn.files.wordpress.com/2009/10/app1.jpg?w=384&#038;h=169" alt="app1" width="384" height="169" /></div>
<div>
<div><strong>\App_Code</strong></div>
<div><strong><br />
</strong></div>
<div><span style="white-space:pre;"> </span>The \App_Code folder is used to store classes, .wsdl (Web Service Description Language), and typed dataset The main use of \App_Code folder is any of the files used in this folder will be available to all the pages in the solutions. One nice thing whenever you place something inside the folder VS 2005 detects this and compiles it if is a class and creates XML web service proxy class (.wsdl).</div>
<div>Add the Calculator class into \App_Code folder, and we will refer this class in our solution</div>
</div>
<div>
<p class="MsoNormal"><span style="text-decoration:underline;"><span style="font-size:12pt;line-height:115%;font-family:&quot;color:black;">Calculator.cs</span></span></p>
</div>
<address>
<div><span style="color:#800000;"></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;">public</span><span style="font-size:10pt;line-height:115%;font-family:&quot;"> <span style="color:blue;">class</span> <span style="color:#2b91af;">Calculator</span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;">{</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> <span style="color:blue;">public</span> <span style="color:blue;">int</span> add(<span style="color:blue;">int</span> a, <span style="color:blue;">int</span> b)</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> {</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> <span style="color:blue;">return</span> (a + b); </span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> }</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> <span style="color:blue;">public</span> <span style="color:blue;">int</span> sub(<span style="color:blue;">int</span> a, <span style="color:blue;">int</span> b)</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> {</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> <span style="color:blue;">return</span> (a &#8211; b);</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> }</span></p>
<p><span style="font-size:10pt;line-height:115%;font-family:&quot;">}</span></p>
<p></span></div>
<p class="MsoNormal"><span style="text-decoration:underline;"><span style="font-size:12pt;line-height:115%;font-family:&quot;">Default.aspx</span></span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="text-decoration:underline;"><span style="font-size:12pt;line-height:115%;font-family:'Times New Roman', serif;"> </span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:'Courier New';color:blue;"><span style="font-style:normal;">protected</span></span><span style="font-size:10pt;line-height:115%;font-family:'Courier New';"><span style="font-style:normal;"> </span><span style="color:blue;"><span style="font-style:normal;">void</span></span><span style="font-style:normal;"> Page_Load(</span><span style="color:blue;"><span style="font-style:normal;">object</span></span><span style="font-style:normal;"> sender, </span><span style="color:#2b91af;"><span style="font-style:normal;">EventArgs</span></span><span style="font-style:normal;"> e)</span><span style="font-style:normal;"> </span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;">{</span><span style="font-style:normal;"> </span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:#2b91af;"><span style="font-style:normal;">Calculator</span></span><span style="font-style:normal;"> calc = </span><span style="color:blue;"><span style="font-style:normal;">new</span></span><span style="font-style:normal;"> </span><span style="color:#2b91af;"><span style="font-style:normal;">Calculator</span></span><span style="font-style:normal;">();</span><span style="font-style:normal;"> </span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:blue;"><span style="font-style:normal;">int</span></span><span style="font-style:normal;"> a = calc.add(1, 2);</span><span style="font-style:normal;"> </span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> Label1.Text = a.ToString();</span><span style="font-style:normal;"> </span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> </span><span style="color:blue;"><span style="font-style:normal;">int</span></span><span style="font-style:normal;"> b = calc.sub(2, 1);</span><span style="font-style:normal;"> </span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><span style="font-style:normal;"> Label2.Text = b.ToString();</span><span style="font-style:normal;"> </span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:'Courier New';"><span style="font-style:normal;">}</span></span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:'Courier New';"><span style="font-style:normal;"> </span></span></p>
<p class="MsoNormal">We can add class file of both .vb and .cs but little trick as to be done, we have to configure web.config file.</p>
<p class="MsoNormal"><span style="color:#800000;">&lt;compilation&gt;</span></p>
<p class="MsoNormal"><span style="color:#800000;">&lt;codeSubDirectories&gt;</span></p>
<p class="MsoNormal"><span style="color:#800000;">&lt;add directoryName=”VB”&gt;&lt;/add&gt;</span></p>
<p class="MsoNormal"><span style="color:#800000;">&lt;add directoryName=”CS”&gt;&lt;/add&gt;</span></p>
<p class="MsoNormal"><span style="color:#800000;">&lt;/codeSubDirectories&gt;</span></p>
<p class="MsoNormal"><span style="color:#800000;">&lt;/compilation&gt;</span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="font-style:normal;"><strong>\App_Data</strong></span></p>
<p class="MsoNormal">This folder stores the data stores which is utilized by the application.It can contain Microsoft SQL Express files (.mdf files), Microsoft Access files (.mdb files), XML files, and more.</p>
<p class="MsoNormal">
<p class="MsoNormal"><strong><span style="font-style:normal;">\App_Themes</span></strong></p>
<p class="MsoNormal"><span style="white-space:pre;"> </span><span style="white-space:pre;"> </span>Themes can provide common look and feel.It can contain .skin file ,css files , images.All these elements is called as theme</p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>\App_Global Resources</strong></p>
<p class="MsoNormal">Resource files are nothing but no executable text associated with the program,Typically resources are images,icons ,text and auxillary files.Resource files are  string tables that can serve as data dictionaries for your applications when these applications require changes to content based on things such as changes in culture. You can add Assembly Resource Files (.resx) to this folder, and they are dynamically compiled and made part of the solution for use by all your .aspx pages in the application.</p>
<p class="MsoNormal">
<p class="MsoNormal">Now let us create two resource files one for English and other for French.</p>
<ul>
<li>English-Resource.resx :It is the default language file using American English</li>
</ul>
<p><img class="aligncenter size-full wp-image-341" title="app2" src="http://naveenpn.files.wordpress.com/2009/10/app2.jpg?w=538&#038;h=66" alt="app2" width="538" height="66" /></p>
<div>
<ul>
<li>French-Resource.resx: The second file is for the same text, but in Finnish Language</li>
</ul>
</div>
<p><img class="aligncenter size-full wp-image-342" title="app3" src="http://naveenpn.files.wordpress.com/2009/10/app3.jpg?w=538&#038;h=69" alt="app3" width="538" height="69" /></p>
<div>
<p><span style="font-style:normal;">When someone with a browser culture of fi-FI invokes the page, he sees the information that comes from this file (French-Resource.resx). Everyone else who comes to the site gets the information that comes from the other file (English-Resource.resx).</span></p>
<p><span style="font-style:normal;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;">protected</span><span style="font-size:10pt;line-height:115%;font-family:&quot;"> <span style="color:blue;">void</span> Button1_Click(<span style="color:blue;">object</span> sender, <span style="color:#2b91af;">EventArgs</span> e)</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> {</span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> Label2.Text = Resources.<span style="color:#2b91af;">Resource</span>.Response + <span style="color:#a31515;">&#8220;&#8221;</span> + TextBox1.Text;</span></p>
<p><span style="font-size:10pt;line-height:115%;font-family:&quot;"> }</span></p>
<p><span style="font-size:10pt;line-height:115%;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:12pt;font-family:&quot;"><span style="font-style:normal;">By changing the language setting of Internet Explorer you can have the response in that language</span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:12pt;font-family:&quot;"><span style="font-style:normal;"><img class="aligncenter size-full wp-image-343" title="app4" src="http://naveenpn.files.wordpress.com/2009/10/app4.jpg?w=416&#038;h=539" alt="app4" width="416" height="539" /><br />
</span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="font-size:12pt;font-family:&quot;"><span style="font-style:normal;"> </span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;"><strong>App_LocalResource</strong></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;">As \App_GlobalResources folder, is used application-wide. If you are not interested in constructing application-wide resources, then we should go for App_LocalResource whose resources can be used for a single .aspx page only.</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;">
<p class="MsoNormal" style="margin-bottom:.0001pt;">
<p class="MsoNormal" style="margin-bottom:.0001pt;"><strong>\App_WebReference</strong></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;">The App_WebReferences folder is a new name for the previous Web References folder used in previous versions of ASP.NET. Now you can use the \App_WebReferences folder and have automatic access to the remote Web services referenced from your application.</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;">
<p class="MsoNormal" style="margin-bottom:.0001pt;">
<p class="MsoNormal" style="margin-bottom:.0001pt;"><strong>\App_Browsers</strong></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;"><span style="white-space:pre;"> </span>The App_Browsers folder holds browser files, which are XML files used to describe characteristics and capabilities of these browsers. We can find a list of globally accessible browser files in the CONFIG\Browsers folder under the installation path. In addition, if you want to change any part of these default browser definition files, just copy the appropriate browser file from the Browsers folder to your application’s \App_Browsers folder and change the definition.</p>
</div>
</address>
<p><a href="http://www.box.net/shared/17h0gmdt6h">Download Code with Article&gt;</a></p>
<p><a href="http://www.box.net/shared/17h0gmdt6h"></a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/naveenpn.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/naveenpn.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/naveenpn.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/naveenpn.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/naveenpn.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/naveenpn.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/naveenpn.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/naveenpn.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/naveenpn.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/naveenpn.wordpress.com/339/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=339&subd=naveenpn&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://naveenpn.wordpress.com/2009/10/08/asp-net-application-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Naveen P.N</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/app1.jpg" medium="image">
			<media:title type="html">app1</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/app2.jpg" medium="image">
			<media:title type="html">app2</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/app3.jpg" medium="image">
			<media:title type="html">app3</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/app4.jpg" medium="image">
			<media:title type="html">app4</media:title>
		</media:content>
	</item>
		<item>
		<title>CSS Guide</title>
		<link>http://naveenpn.wordpress.com/2009/10/08/css-guide/</link>
		<comments>http://naveenpn.wordpress.com/2009/10/08/css-guide/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 22:09:55 +0000</pubDate>
		<dc:creator>Naveen P.N</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://naveenpn.wordpress.com/?p=331</guid>
		<description><![CDATA[Hi here i have deiscussed some of the selectors used in CSS.These are the notes which i have prepared thought of sharing with friends,
Different Types Selectors
a)      Type Selectors
b)      Class Selectors
c)      ID Selectors
d)     Descendent Selectors
e)      Child Selectors
f)       Universal Selectors
g)      Adjacent Sibling Selectors
h)      Attribute Selectors
i)        Pseudo Classes
j)        Pseudo Elements
&#60;html&#62;
&#60;style type=&#8221;text/css&#8221;&#62;
p
{
background-color: #3399FF;
}
#con
{
background-color: #FFFF66;
}
&#60;/style&#62;
&#60;body&#62;
&#60;p&#62;Naveen&#60;/p&#62;
&#60;div id=con&#62;&#60;p&#62;Sadhana&#60;/p&#62;&#60;/div&#62;
&#60;p&#62;Praveen&#60;/p&#62;
&#60;/body&#62;
&#60;/html&#62;



Type Selectors
Type Selector precedes ID [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=331&subd=naveenpn&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi here i have deiscussed some of the selectors used in CSS.These are the notes which i have prepared thought of sharing with friends,</p>
<p><span style="text-decoration:underline;">Different Types Selectors</span></p>
<p>a)      Type Selectors</p>
<p>b)      Class Selectors</p>
<p>c)      ID Selectors</p>
<p>d)     Descendent Selectors</p>
<p>e)      Child Selectors</p>
<p>f)       Universal Selectors</p>
<p>g)      Adjacent Sibling Selectors</p>
<p>h)      Attribute Selectors</p>
<p>i)        Pseudo Classes</p>
<p>j)        Pseudo Elements</p>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;html&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;style type=&#8221;text/css&#8221;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">p</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">{</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">background-color: #3399FF;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">}</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">#con</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">{</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">background-color: #FFFF66;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">}</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/style&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;body&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;p&gt;Naveen&lt;/p&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;div id=con&gt;&lt;p&gt;Sadhana&lt;/p&gt;&lt;/div&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;p&gt;Praveen&lt;/p&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/body&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/html&gt;</div>
<address></address>
<address>
<p class="MsoNormal">
<p class="MsoNormal"><strong><span style="text-decoration:underline;"><span style="font-size:12pt;line-height:115%;font-family:&quot;" lang="EN-IN"><span style="font-style:normal;">Type Selectors</span></span></span></strong></p>
<p class="MsoNormal"><span style="font-size:12pt;line-height:115%;font-family:&quot;" lang="EN-IN"><span style="font-style:normal;">Type Selector precedes ID Selector</span></span></p>
</address>
<address></address>
<address></address>
<address><span style="color:#800000;">&lt;html&gt; </span></address>
<address>
<address><span style="color:#800000;"><span style="color:#800000;"> &lt;style type=&#8221;text/css&#8221;&gt;</span></span></address>
<address><span style="color:#800000;"><span style="color:#800000;"> p</span></span></address>
<address><span style="color:#800000;"><span style="color:#800000;"> {</span></span></address>
<address><span style="color:#800000;"><span style="color:#800000;"> background-color: #3399FF;</span></span></address>
<address><span style="color:#800000;"><span style="color:#800000;"> }</span></span></address>
<address><span style="color:#800000;"><span style="color:#800000;"> #con</span></span></address>
<address><span style="color:#800000;"><span style="color:#800000;"> {</span></span></address>
<address><span style="color:#800000;"><span style="color:#800000;"> background-color: #FFFF66;</span></span></address>
<address><span style="color:#800000;"><span style="color:#800000;"> }</span></span></address>
<address><span style="color:#800000;"><span style="color:#800000;"> &lt;/style&gt;</span></span></address>
<address><span style="color:#800000;"><span style="color:#800000;">&lt;body&gt;</span></span></address>
<address><span style="color:#800000;"><span style="color:#800000;"> &lt;p&gt;Naveen&lt;/p&gt;</span></span></address>
<address><span style="color:#800000;"><span style="color:#800000;"> &lt;div id=con&gt;&lt;p&gt;Sadhana&lt;/p&gt;&lt;/div&gt;</span></span></address>
<address><span style="color:#800000;"><span style="color:#800000;"> &lt;p&gt;Praveen&lt;/p&gt;</span></span></address>
<address><span style="color:#800000;"><span style="color:#800000;">&lt;/body&gt;</span></span></address>
<address><span style="color:#800000;"><span style="color:#800000;">&lt;/html&gt;</span></span></address>
</p></address>
<address><span style="color:#800000;"><span style="color:#800000;">&lt;html&gt; </span></span><img class="aligncenter size-full wp-image-332" title="css1" src="http://naveenpn.files.wordpress.com/2009/10/css1.jpg?w=438&#038;h=118" alt="css1" width="438" height="118" /> </address>
<p><strong><br />
</strong></p>
<p><span style="text-decoration:underline;"><strong>Class Selectors</strong></span></p>
<p><strong> </strong></p>
<address><span style="color:#800000;">&lt;</span><span style="color:#800000;">html&gt;</span></address>
<address><span style="color:#800000;">&lt;style &gt;</span></address>
<address><span style="color:#800000;"> input.text</span></address>
<address><span style="color:#800000;"> {</span></address>
<address><span style="color:#800000;"> background-color: #</span><span style="color:#800000;">3399FF</span><span style="color:#800000;">;</span></address>
<address><span style="color:#800000;"> border: medium dotted groove</span></address>
<address><span style="color:#800000;"> }</span></address>
<address><span style="color:#800000;">&lt;/style&gt;</span></address>
<address><span style="color:#800000;">&lt;body&gt;</span></address>
<address><span style="color:#800000;"> &lt;pre&gt;</span></address>
<address><span style="color:#800000;"> &lt;input size=&#8221;14&#8243; &gt;</span></address>
<address><span style="color:#800000;"> &lt;input size=&#8221;14&#8243; &gt;</span></address>
<address><span style="color:#800000;"> &lt;input size=&#8221;14&#8243; &gt;</span></address>
<address><span style="color:#800000;"> &lt;input value=&#8221;Submit&#8221; /&gt;</span></address>
<address><span style="color:#800000;"> &lt;/pre&gt;</span></address>
<address><span style="color:#800000;">&lt;/body&gt;</span></address>
<address><span style="color:#800000;">&lt;/html&gt;</span></address>
<address></address>
<address></address>
<p><img class="aligncenter size-full wp-image-333" title="css2" src="http://naveenpn.files.wordpress.com/2009/10/css2.jpg?w=601&#038;h=128" alt="css2" width="601" height="128" /></p>
<p><span style="font-style:normal;"> </span></p>
<pre><span style="font-family:'Times New Roman', serif;font-size:medium;"><strong>
<span style="text-decoration:underline;">
</span>

<span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:small;"><span style="font-weight:normal;line-height:19px;white-space:normal;"><span style="font-family:'Times New Roman', serif;"><span style="text-decoration:underline;"><strong>ID Selectors</strong></span></span></span></span>

<span style="font-size:small;"> </span><span style="font-size:12pt;line-height:115%;font-family:'Times New Roman', serif;" lang="EN-IN"><span style="font-weight:normal;">Similarly to </span></span><span style="font-size:12pt;line-height:115%;font-family:'Times New Roman', serif;" lang="EN-IN"><span style="font-weight:normal;">class </span></span><span style="font-size:12pt;line-height:115%;font-family:'Times New Roman', serif;" lang="EN-IN"><span style="font-weight:normal;">selectors, </span></span><span style="font-size:12pt;line-height:115%;font-family:'Times New Roman', serif;" lang="EN-IN"><span style="font-weight:normal;">id </span></span><span style="font-size:12pt;line-height:115%;font-family:'Times New Roman', serif;" lang="EN-IN"><span style="font-weight:normal;">selectors enable you to select an element based on the </span></span><span style="font-size:12pt;line-height:115%;font-family:'Times New Roman', serif;" lang="EN-IN"><span style="font-weight:normal;">id </span></span><span style="font-size:12pt;line-height:115%;font-family:'Times New Roman', serif;" lang="EN-IN"><span style="font-weight:normal;">attribute:</span></span>
<address><span style="font-weight:normal;line-height:18px;font-size:medium;">
<span style="color:#800000;">#page-title h1 </span><span style="color:#800000;">
</span>
<address><span style="color:#800000;">{</span></address>

<span style="color:#800000;">       text-align: right;</span><span style="color:#800000;">
</span>
<address><span style="color:#800000;">}</span></address>

<span style="font-size:12pt;font-family:&quot;" lang="EN-IN"><span style="font-style:normal;">the </span></span><span style="font-size:12pt;font-family:&quot;" lang="EN-IN"><span style="font-style:normal;">class </span></span><span style="font-size:12pt;font-family:&quot;" lang="EN-IN"><span style="font-style:normal;">selector used a period (.), the </span></span><span style="font-size:12pt;font-family:&quot;" lang="EN-IN"><span style="font-style:normal;">id </span></span><span style="font-size:12pt;font-family:&quot;" lang="EN-IN"><span style="font-style:normal;">selector relies on a hash (#). In this
rule, you selected the </span></span><span style="font-size:12pt;font-family:&quot;" lang="EN-IN"><span style="font-style:normal;">h1 </span></span><span style="font-size:12pt;font-family:&quot;" lang="EN-IN"><span style="font-style:normal;">element that has an </span></span><span style="font-size:12pt;font-family:&quot;" lang="EN-IN"><span style="font-style:normal;">id </span></span><span style="font-size:12pt;font-family:&quot;" lang="EN-IN"><span style="font-style:normal;">attribute whose value matches the text
after the hash.</span></span>

<em><span style="color:#800000;">&lt;html&gt;</span></em><span style="color:#800000;">
</span>
<address><em><span style="color:#800000;">&lt;style type="text/css"&gt;</span></em></address>

<span style="color:#800000;">
</span>
<address><span style="color:#800000;">       #con p</span></address>
<address><span style="color:#800000;">       {</span></address>

<span style="color:#800000;">             background-color: #CCCC99;</span><span style="color:#800000;">
</span><span style="line-height:18px;"><span style="color:#800000;">        </span></span><span style="color:#800000;">}</span><span style="color:#800000;">
</span>
<address><span style="color:#800000;">&lt;/style&gt;</span></address>
<address><span style="color:#800000;">&lt;body&gt;</span></address>
<address><span style="color:#800000;">     &lt;p&gt;Naveen&lt;/p&gt;</span></address>
<address><span style="color:#800000;">     &lt;div id="con" &gt;</span></address>
<address><span style="color:#800000;">          &lt;p&gt;Sadhana&lt;/p&gt;</span></address>
<address><span style="color:#800000;">     &lt;/div&gt;</span></address>
<address><span style="color:#800000;">     &lt;p&gt;Praveen&lt;/p&gt;</span></address>
<address><span style="color:#800000;">&lt;/body&gt;</span></address>
<address><span style="color:#800000;">&lt;/html&gt;</span></address>

</span></address>

<span style="font-weight:normal;"><span style="text-decoration:underline;">Descendant Selectors</span></span></strong></span>
<span style="font-family:'Times New Roman', serif;font-size:medium;"><strong><span style="font-weight:normal;"> </span>
<address><span style="color:#800000;"><span style="font-weight:normal;">&lt;html&gt;
&lt;style type="text/css"&gt;
          a
          {
                     background-color: #FFFF99;
          }
        </span></span></address>
<address><span style="color:#800000;"><span style="font-weight:normal;">        li a
        {
                 background-color: #FF99FF;
        }
&lt;/style&gt;
&lt;body&gt;
    &lt;li&gt;&lt;a href=" "&gt;Bananas&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=" "&gt;Cherries&lt;/a&gt;&lt;/li&gt;
&lt;/body&gt;
&lt;/html&gt;</span></span></address>
<address><span style="text-decoration:underline;">
</span><span style="font-weight:normal;"><span style="text-decoration:underline;"><span style="font-style:normal;">Universal Selector</span></span></span></address>
<address><em>*</em></address>
<address><span style="font-weight:normal;"><span style="color:#800000;">{
	 font-family: Verdana, Arial, sans-serif;
}</span><em>

</em><span style="font-style:normal;"><strong><span style="text-decoration:underline;">
</span></strong></span></span></address>
<address><span style="font-weight:normal;"><span style="font-style:normal;"><strong><span style="text-decoration:underline;">Attribute Selector</span></strong></span><span style="text-decoration:underline;">
</span>

<span style="color:#800000;">&lt;html&gt;
&lt;style type="text/css" &gt;
input[type=text]
{
background-color: #3399FF;
border: medium dotted groove
}
&lt;/style&gt;
&lt;body&gt;
&lt;pre&gt;
         &lt;input type="text" size="14"&gt;
         &lt;input type="text" size="14"&gt;
         &lt;input type="text" size="14"&gt;

         &lt;input type="button" value="Submit" /&gt;
&lt;/pre&gt;
&lt;/body&gt;
&lt;/html&gt;</span>

<span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;white-space:normal;font-size:13px;">Using an attribute selector, it would be very easy for you to hone in on all input elements whose type attribute exactly matched “text”:-</span>
<span style="color:#800000;"><span style="font-style:normal;">
</span></span></span></address>
<address><span style="font-weight:normal;"><span style="color:#800000;"><span style="font-style:normal;"><em>input[type=”text”]
 {
      border: 1px solid #C00;
}</em>
</span></span>
</span></address>

<span style="font-weight:normal;">
</span><span style="font-weight:normal;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-style:normal;line-height:19px;white-space:normal;font-size:13px;">The advantage to this method is that the &lt;input type=”submit” /&gt; element is unaffected, and the border is applied only to the desired text fields.</span>
<em><span style="text-decoration:underline;"><strong><span style="font-style:normal;">
</span></strong></span></em></span><span style="font-weight:normal;"><em><strong><span style="font-style:normal;"><span style="text-decoration:underline;">Pseudo Selector</span></span></strong></em>
</span>
<address><span style="font-weight:normal;">
<span style="color:#800000;">a:link {
 color: blue;
}
a:visited {
 color: purple;
}
a:hover {
 color: red;
}
a:active {
 color: gray;
}</span></span></address>

</strong><strong> </strong></span></pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/naveenpn.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/naveenpn.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/naveenpn.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/naveenpn.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/naveenpn.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/naveenpn.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/naveenpn.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/naveenpn.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/naveenpn.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/naveenpn.wordpress.com/331/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=331&subd=naveenpn&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://naveenpn.wordpress.com/2009/10/08/css-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Naveen P.N</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/css1.jpg" medium="image">
			<media:title type="html">css1</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/css2.jpg" medium="image">
			<media:title type="html">css2</media:title>
		</media:content>
	</item>
		<item>
		<title>Embedding Media Player in HTML</title>
		<link>http://naveenpn.wordpress.com/2009/10/08/embedding-media-player-in-html/</link>
		<comments>http://naveenpn.wordpress.com/2009/10/08/embedding-media-player-in-html/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 21:08:22 +0000</pubDate>
		<dc:creator>Naveen P.N</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Embedding Player in HTML]]></category>
		<category><![CDATA[HTML + Media Player]]></category>
		<category><![CDATA[Playing Video Using HTML]]></category>

		<guid isPermaLink="false">http://naveenpn.wordpress.com/?p=327</guid>
		<description><![CDATA[&#60;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221;
&#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&#62;
&#60;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&#62;
&#60;head&#62;
&#60;title&#62;&#60;/title&#62;
&#60;/head&#62;
&#60;body&#62;
&#60;object id=&#8221;MediaPlayer1&#8243; width=&#8221;180&#8243; height=&#8221;200&#8243;
classid=&#8221;CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95&#8243;
codebase=&#8221;http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701&#8243;
standby=&#8221;Loading Microsoft® Windows® Media Player components&#8230;&#8221;
type=&#8221;application/x-oleobject&#8221; align=&#8221;middle&#8221;&#62;
&#60;param name=&#8221;FileName&#8221; value=&#8221;YourFilesName.mpeg&#8221;&#62;
&#60;param name=&#8221;ShowStatusBar&#8221; value=&#8221;True&#8221;&#62;
&#60;param name=&#8221;DefaultFrame&#8221; value=&#8221;mainFrame&#8221;&#62;
&#60;param name=&#8221;autostart&#8221; value=&#8221;false&#8221;&#62;
&#60;embed type=&#8221;application/x-mplayer2&#8243;
pluginspage = &#8220;http://www.microsoft.com/Windows/MediaPlayer/&#8221;
src=&#8221;D:\Documents and Settings\Naveen\My Documents\My Pictures\media.mpeg&#8221;
autostart=&#8221;false&#8221;
align=&#8221;middle&#8221;
width=&#8221;210&#8243;
height=&#8221;280&#8243;
defaultframe=&#8221;rightFrame&#8221;
showstatusbar=&#8221;true&#8221;&#62;
&#60;/embed&#62;
&#60;/object&#62;
&#60;/body&#62;
&#60;/html&#62;

Hi this is the standard code which is available to embed media player

in html ,it took some time to find the solution.The path of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=327&subd=naveenpn&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;head&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;title&gt;&lt;/title&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/head&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;body&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;object id=&#8221;MediaPlayer1&#8243; width=&#8221;180&#8243; height=&#8221;200&#8243;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">classid=&#8221;CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95&#8243;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">codebase=&#8221;http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701&#8243;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">standby=&#8221;Loading Microsoft® Windows® Media Player components&#8230;&#8221;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">type=&#8221;application/x-oleobject&#8221; align=&#8221;middle&#8221;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;param name=&#8221;FileName&#8221; value=&#8221;YourFilesName.mpeg&#8221;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;param name=&#8221;ShowStatusBar&#8221; value=&#8221;True&#8221;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;param name=&#8221;DefaultFrame&#8221; value=&#8221;mainFrame&#8221;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;param name=&#8221;autostart&#8221; value=&#8221;false&#8221;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;embed type=&#8221;application/x-mplayer2&#8243;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">pluginspage = &#8220;http://www.microsoft.com/Windows/MediaPlayer/&#8221;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">src=&#8221;D:\Documents and Settings\Naveen\My Documents\My Pictures\media.mpeg&#8221;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">autostart=&#8221;false&#8221;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">align=&#8221;middle&#8221;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">width=&#8221;210&#8243;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">height=&#8221;280&#8243;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">defaultframe=&#8221;rightFrame&#8221;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">showstatusbar=&#8221;true&#8221;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/embed&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/object&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/body&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/html&gt;</div>
<pre>
<span style="color:#800000;"><span style="color:#000000;">Hi this is the standard code which is available to embed media player</span></span>

<span style="color:#800000;"><span style="color:#000000;">in html ,it took some time to find the solution.The path of a music</span></span>

<span style="color:#800000;"><span style="color:#000000;">file should be given at a place where the text is blue.</span></span>

<span style="color:#800000;">&lt;html&gt;</span>

<span style="color:#800000;">&lt;head&gt;  &lt;title&gt;Media Player&lt;/title&gt;&lt;/head&gt;</span>

<span style="color:#800000;">&lt;body&gt;</span>

<span style="color:#800000;">&lt;object id="MediaPlayer1" width="180" height="200"</span>

<span style="color:#800000;">        classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"</span>

<span style="color:#800000;">        codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"</span>

<span style="color:#800000;">        standby="Loading Microsoft® Windows® Media Player components."</span>

<span style="color:#800000;">        type="application/x-oleobject" align="middle"&gt;</span>

<span style="color:#800000;">       &lt;param name="FileName" value="YourFilesName.mpeg"&gt;</span>

<span style="color:#800000;">       &lt;param name="ShowStatusBar" value="True"&gt;</span>

<span style="color:#800000;">       &lt;param name="DefaultFrame" value="mainFrame"&gt;</span>

<span style="color:#800000;">       &lt;param name="autostart" value="false"&gt;</span>

<span style="color:#800000;">       &lt;embed type="application/x-mplayer2"</span>

<span style="color:#800000;">             pluginspage = "http://www.microsoft.com/Windows/MediaPlayer/"</span>

<span style="color:#800000;">       src="<span style="color:#0000ff;">\</span></span><span style="color:#0000ff;">\Your Path</span><span style="color:#800000;">"  autostart="false" align="middle" width="210" </span>

<span style="color:#800000;">       height="280" defaultframe="rightFrame" showstatusbar="true"&gt;</span>

<span style="color:#800000;">    &lt;/embed&gt;</span>

<span style="color:#800000;">&lt;/object&gt;</span>

<span style="color:#800000;">&lt;/body&gt;</span>

<span style="color:#800000;">&lt;/html&gt;</span>
</pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/naveenpn.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/naveenpn.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/naveenpn.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/naveenpn.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/naveenpn.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/naveenpn.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/naveenpn.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/naveenpn.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/naveenpn.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/naveenpn.wordpress.com/327/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=327&subd=naveenpn&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://naveenpn.wordpress.com/2009/10/08/embedding-media-player-in-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Naveen P.N</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating Dynamic Linking Library using ASP.NET</title>
		<link>http://naveenpn.wordpress.com/2009/10/05/creating-dynamic-linking-library-using-asp-net/</link>
		<comments>http://naveenpn.wordpress.com/2009/10/05/creating-dynamic-linking-library-using-asp-net/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 01:17:18 +0000</pubDate>
		<dc:creator>Naveen P.N</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[dll using ASP.NET]]></category>
		<category><![CDATA[Dll+ASP.NET]]></category>
		<category><![CDATA[Dynamic Linking Library using .NET]]></category>

		<guid isPermaLink="false">http://naveenpn.wordpress.com/?p=320</guid>
		<description><![CDATA[Hi in this I  article I will  describes what exactly a dll is and how to create a dll file in ASP.NET and use the code.
DLL stands for Dynamic Linking Library which contains code and data which can be used by other application .The main advantage of creating dll is the project can be modularized [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=320&subd=naveenpn&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi in this I  article I will  describes what exactly a dll is and how to create a dll file in ASP.NET and use the code.</p>
<p>DLL stands for Dynamic Linking Library which contains code and data which can be used by other application .The main advantage of creating dll is the project can be modularized i.e. the project can be divided into several modules each of the module is linked or called by their respective dll. Windows OS implemented some of the files has dll</p>
<p>1)       ActiveX(.ocx)</p>
<p>2)       Control Panel (.cpl)</p>
<p>3)       Device Driver (.drv)</p>
<p>The main advantage of creating dll’s are</p>
<ul>
<li>The program can be divided into modules so it will easy for a software developer to integrate.</li>
<li>It is easy to deploy and installation.</li>
<li>Many application can share single copy of dll.</li>
</ul>
<p><strong><span style="text-decoration:underline;">Creating dll using ASP.NET</span></strong></p>
<p>Let us create a basic class of mathematics which contain some of the maths functions like add,sub,multiply.</p>
<p>Open your Visual Studio and migrate File -&gt;New Project -&gt;Class Library</p>
<p><img class="aligncenter size-full wp-image-317" title="dll-1" src="http://naveenpn.files.wordpress.com/2009/10/dll-1.jpg?w=544&#038;h=303" alt="dll-1" width="544" height="303" /></p>
<p><span style="color:#000000;"><span style="color:#0000ff;">Public Class</span> Class1</span></p>
<p><span style="color:#000000;"><span style="color:#0000ff;">Public Function</span> add(ByVal a As Integer, ByVal b As Integer) As Integer</span></p>
<p><span style="color:#000000;">Return a + b</span></p>
<p><span style="color:#0000ff;">End Function</span></p>
<p><span style="color:#000000;">P<span style="color:#0000ff;">ublic Function</span> subtract(ByVal a As Integer, ByVal b As Integer) As Integer</span></p>
<p><span style="color:#000000;"><span style="color:#0000ff;">Return</span> a &#8211; b</span></p>
<p><span style="color:#0000ff;">End Function</span></p>
<p><span style="color:#000000;"><span style="color:#0000ff;">Public Function</span> multiply(ByVal a As Integer, ByVal b As Integer) As Integer</span></p>
<p><span style="color:#000000;"><span style="color:#0000ff;">Return</span> a * b</span></p>
<p><span style="color:#0000ff;">End Function</span></p>
<p><span style="color:#0000ff;">End Class</span><br />
Once you build a dll file is created ,in the debug folder ,now we will import this dll file into our Windows project.<img class="aligncenter size-full wp-image-318" title="dll2" src="http://naveenpn.files.wordpress.com/2009/10/dll2.jpg?w=362&#038;h=123" alt="dll2" width="362" height="123" /></p>
<p>Create a new Windows Project File -&gt; New Project-&gt; Windows Forms Application.</p>
<p><img class="aligncenter size-full wp-image-319" title="dll-3" src="http://naveenpn.files.wordpress.com/2009/10/dll-3.jpg?w=542&#038;h=363" alt="dll-3" width="542" height="363" /></p>
<p>To make the class library available in the client application, a reference to the .dll needs to be added.To do so Select project -&gt;Add Reference -&gt;Browser -&gt;bin \Debug-&gt;OK</p>
<p><img class="aligncenter size-full wp-image-322" title="dll33" src="http://naveenpn.files.wordpress.com/2009/10/dll33.jpg?w=505&#038;h=388" alt="dll33" width="505" height="388" /></p>
<p>Using this code we can access the data which is actually the dll.</p>
<p><span style="color:#0000ff;">Imports</span> Mathematics</p>
<p><span style="color:#0000ff;">Public Class </span>Form1</p>
<p style="text-align:left;"><span style="color:#000000;"> <span style="color:#0000ff;">Private Sub</span> Button1_Click(<span style="color:#0000ff;">ByVal</span> sender <span style="color:#0000ff;">As</span> System.Object, <span style="color:#0000ff;">ByVal</span> e <span style="color:#0000ff;">As</span> System.EventArgs) <span style="color:#0000ff;">Handles</span> Button1.Click</span></p>
<p style="text-align:left;"><span style="color:#000000;"><span style="color:#0000ff;">Dim</span> obj1 <span style="color:#0000ff;">As New</span> Class1</span></p>
<p style="text-align:left;"><span style="color:#000000;"><span style="color:#0000ff;">Dim</span> result <span style="color:#0000ff;">As</span> Integer</span></p>
<p style="text-align:left;"><span style="color:#000000;">result = obj1.add(TextBox1.Text, TextBox2.Text)</span></p>
<p style="text-align:left;"><span style="color:#000000;">MessageBox.Show(&#8220;&#8221; + result.ToString)</span></p>
<p style="text-align:left;"><span style="color:#000000;"> <span style="color:#0000ff;">End Sub</span></span></p>
<p><span style="color:#0000ff;"> End Class</span><br />
<a href="http://www.box.net/shared/xt43kzba2r">Download</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/naveenpn.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/naveenpn.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/naveenpn.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/naveenpn.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/naveenpn.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/naveenpn.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/naveenpn.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/naveenpn.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/naveenpn.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/naveenpn.wordpress.com/320/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=320&subd=naveenpn&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://naveenpn.wordpress.com/2009/10/05/creating-dynamic-linking-library-using-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Naveen P.N</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/dll-1.jpg" medium="image">
			<media:title type="html">dll-1</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/dll2.jpg" medium="image">
			<media:title type="html">dll2</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/dll-3.jpg" medium="image">
			<media:title type="html">dll-3</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/dll33.jpg" medium="image">
			<media:title type="html">dll33</media:title>
		</media:content>
	</item>
		<item>
		<title>My Documents folder missing in My Computer</title>
		<link>http://naveenpn.wordpress.com/2009/10/03/my-documents-folder-missing-in-my-computer/</link>
		<comments>http://naveenpn.wordpress.com/2009/10/03/my-documents-folder-missing-in-my-computer/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 01:57:52 +0000</pubDate>
		<dc:creator>Naveen P.N</dc:creator>
				<category><![CDATA[Windows Tips n Tricks]]></category>

		<guid isPermaLink="false">http://naveenpn.wordpress.com/?p=284</guid>
		<description><![CDATA[When you open the My Computer screen and your Documents folder is missing but all the other users folders are there try this tweak.
STEP 1:
START &#62;  RUN &#62; REGEDIT &#62;
HKEY_LOCAL_MACHINE / Software / Microsoft / Windows / Current Version / Explorer / DocFolderPaths
Once you click the DocFolderPaths folder you should see all the user&#8217;s folders.
STEP [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=284&subd=naveenpn&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>When you open the My Computer screen and your Documents folder is missing but all the other users folders are there try this tweak.</p>
<p>STEP 1:</p>
<p>START &gt;  RUN &gt; REGEDIT &gt;</p>
<p>HKEY_LOCAL_MACHINE / Software / Microsoft / Windows / Current Version / Explorer / DocFolderPaths</p>
<p>Once you click the DocFolderPaths folder you should see all the user&#8217;s folders.</p>
<p>STEP 2:</p>
<p>Add a new string value</p>
<p><img class="aligncenter size-full wp-image-285" title="mydocuments1" src="http://naveenpn.files.wordpress.com/2009/10/mydocuments1.jpg?w=618&#038;h=242" alt="mydocuments1" width="618" height="242" /></p>
<p>Value Name: your user name</p>
<p>Value Data:  the path to your docs folder ( ex. C:\Documents and Settings\your docs folder )</p>
<p><img class="aligncenter size-full wp-image-286" title="mydocuments2" src="http://naveenpn.files.wordpress.com/2009/10/mydocuments2.jpg?w=618&#038;h=373" alt="mydocuments2" width="618" height="373" /></p>
<p>Exit Registry editor and open my computer, your docs folder should now be visable</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/naveenpn.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/naveenpn.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/naveenpn.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/naveenpn.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/naveenpn.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/naveenpn.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/naveenpn.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/naveenpn.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/naveenpn.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/naveenpn.wordpress.com/284/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=284&subd=naveenpn&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://naveenpn.wordpress.com/2009/10/03/my-documents-folder-missing-in-my-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Naveen P.N</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/mydocuments1.jpg" medium="image">
			<media:title type="html">mydocuments1</media:title>
		</media:content>

		<media:content url="http://naveenpn.files.wordpress.com/2009/10/mydocuments2.jpg" medium="image">
			<media:title type="html">mydocuments2</media:title>
		</media:content>
	</item>
		<item>
		<title>About Metatag</title>
		<link>http://naveenpn.wordpress.com/2009/10/02/about-metatag/</link>
		<comments>http://naveenpn.wordpress.com/2009/10/02/about-metatag/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 12:28:28 +0000</pubDate>
		<dc:creator>Naveen P.N</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://naveenpn.wordpress.com/?p=31</guid>
		<description><![CDATA[Metatags are for us to define our website to outside users.We can declare title,keywords etc.
There are two types of meta tags
(a)HTTP-EQUIV
(b)NAME
(a)HTTP-EQUIV
These tags are equivalent to http,Say for example if u click hyperlink which begins with http://
you are actually asking to transfer using http protocol.In additional what HTTP-EQUIV Metatags does is ,it
define additional information to be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=31&subd=naveenpn&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Metatags are for us to define our website to outside users.We can declare title,keywords etc.<br />
There are two types of meta tags<br />
(a)HTTP-EQUIV<br />
(b)NAME<br />
(a)HTTP-EQUIV<br />
These tags are equivalent to http,Say for example if u click hyperlink which begins with http://<br />
you are actually asking to transfer using http protocol.In additional what HTTP-EQUIV Metatags does is ,it<br />
define additional information to be sent to the browser in the http header.This gives the web site creator additional;<br />
control over his data.</p>
<p>(b)NAME<br />
The NAME is acvtually used to define information which is to be referenced outside the document.Here is the actuall<br />
data is passed to search engines.</p>
<p>Metatags must be placed b/w &lt;Head&gt; &#8212;&#8211;&lt;/HEAD&gt; tags before the body<br />
Note:<br />
(a)On framed pages,be sure and include the metatags on the frameset page and the framed pages.<br />
(b)An important note some people copy someones else&#8217;s Metatags and they have punished in the court(like trademarks etc.).</p>
<p>Attributes:<br />
http-equiv=&#8221;name&#8221; content=&#8221;value&#8221;</p>
<p>Value                        Description and example</p>
<p>content                   -language Specifies the language.<br />
content                   -script-type Defines scripting language used.<br />
content                    -style-type Defines type of style sheets used.<br />
content-type Specifies type of data within document.<br />
expires Expiration date of the document.<br />
ext-cache Define Netscape external cache.<br />
imagetoolbar This turns off Internet Explorer&#8217;s image toolbar that appears when you hover over an image<br />
page-enter Specifies the transition effect that is to be performed when the page is loaded.<br />
page-exit Specifies the transition effect that is to be performed when the page is unloaded.<br />
pics-label Includes rating information so content filters can do their job.<br />
pragma Do not locally cache documents.<br />
refresh Indicates the document displays for a specified amount of time before switching to a new URL.<br />
set-cookie Sets the name and value for a persistent cookie.<br />
site-enter Specifies the transition effect that is to be performed when the site is loaded.<br />
site-exit Specifies the transition effect that is to be performed when the site is unloaded.<br />
window-target Specifies the name of the frame for the current page.<br />
name=&#8221;value&#8221;<br />
Name and description of the element that is being set.</p>
<p>Value Description and example<br />
abstract Define a secondary description.<br />
author Records the name of the author of the document.<br />
classification Classify the site into the appropriate category.<br />
copyright Used to include copyright information in the document.<br />
description Some search engines pick up this description to show with the results of searches.<br />
distribution Declares whether a document is available to the web or on an intranet.<br />
doc-class Indicates completion status of document.<br />
doc-rights Indicates copyright status of document.<br />
doc-type Specifies type of document.<br />
expires Expiration date of the document.<br />
generator The name of the program that created the document.<br />
googlebot Define pages to be excluded from googebot indexing.<br />
keywords Inform search engines what your web site or page is about.<br />
MSSmartTagsPreventParsing Use this tag to prevent any Microsoft product from automatically generating smart tags.<br />
owner Define the owner of the page or site.<br />
progid<br />
rating A simple rating for a site.<br />
refresh Indicates the document displays for a specified amount of time before switching to a new URL.<br />
reply-to Email address of contact for document.<br />
resource-type Indicates the type of web resource.<br />
revisit-after Defines how often search engine spiders should revisit your site.<br />
robots Define pages to be excluded from robot indexing.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/naveenpn.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/naveenpn.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/naveenpn.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/naveenpn.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/naveenpn.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/naveenpn.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/naveenpn.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/naveenpn.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/naveenpn.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/naveenpn.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=naveenpn.wordpress.com&blog=3945418&post=31&subd=naveenpn&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://naveenpn.wordpress.com/2009/10/02/about-metatag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Naveen P.N</media:title>
		</media:content>
	</item>
	</channel>
</rss>