<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mukesh Chapagain&#039;s Blog &#187; ASP.NET</title>
	<atom:link href="http://blog.chapagain.com.np/tag/asp-net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.chapagain.com.np</link>
	<description>PHP Magento jQuery SQL Wordpress Joomla Programming &#38; Tutorial</description>
	<lastBuildDate>Tue, 07 Feb 2012 00:54:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>ASP.NET Error: A potentially dangerous Request.Form value was detected from the client</title>
		<link>http://blog.chapagain.com.np/aspnet-error-a-potentially-dangerous-requestform-value-was-detected-from-the-client/</link>
		<comments>http://blog.chapagain.com.np/aspnet-error-a-potentially-dangerous-requestform-value-was-detected-from-the-client/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 11:24:56 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[problem]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=109</guid>
		<description><![CDATA[Error: A potentially dangerous Request.Form value was detected from the client Scenario: When you put html tags in your form fields (textbox,textarea) like Cause: This is for security reason. This prevents users from injecting HTML or other scripts through form fields. The .NET framework throws error when it detects any HTML statement in the text [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/javascript-how-to-submit-form-and-change-form-action/' rel='bookmark' title='Permanent Link: Javascript: How to Submit form and Change form action?'>Javascript: How to Submit form and Change form action?</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-contact-form-7-quick-fix-spinning-arrow/' rel='bookmark' title='Permanent Link: WordPress Contact Form 7: Quick Fix to spinning arrow displays forever &#038; no success/error message displayed'>WordPress Contact Form 7: Quick Fix to spinning arrow displays forever &#038; no success/error message displayed</a></li>
<li><a href='http://blog.chapagain.com.np/pageispostback-property-a-solution-to-the-client-postback-problem/' rel='bookmark' title='Permanent Link: Page.IsPostBack property: A solution to the client postback problem'>Page.IsPostBack property: A solution to the client postback problem</a></li>
<li><a href='http://blog.chapagain.com.np/w3c-validation-iframe-error-with-xhtml-1-0-strict-doctype/' rel='bookmark' title='Permanent Link: W3C Validation: IFrame Error with XHTML 1.0 Strict Doctype'>W3C Validation: IFrame Error with XHTML 1.0 Strict Doctype</a></li>
<li><a href='http://blog.chapagain.com.np/regular-expression-check-validation-in-php/' rel='bookmark' title='Permanent Link: Regular Expression check, Validation in PHP'>Regular Expression check, Validation in PHP</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Error:</p>
<p>A potentially dangerous Request.Form value was detected from the client</p>
<p>Scenario:</p>
<p>When you put html tags in your form fields (textbox,textarea) like
<p><br/><strong><a href=""></a></p>
<p><span id="more-109"></span></p>
<p>Cause:</p>
<p>This is for security reason. This prevents users from injecting HTML or other scripts through form fields. The .NET framework throws error when it detects any HTML statement in the text entered. Actually, it throws error whenever it detects anything with opening and closing angled brackets (&#8220;<...>&#8220;). This feature was added in .NET 1.1 framework. It was not present in .NET 1.0 framwork</p>
<p>Solution:</p>
<p>There are two possible solutions.</p>
<p>1) Globally turn request validation off</p>
<p>For this, you have to add the following to your web.config file within the <system.web> section.</p>
<pages validateRequest="false" />
<p>This will turn off request validation for every page in your application.</p>
<p>2) Turn request validation off for particular pages</p>
<p>If you don&#8217;t want to turn off request validation for every page in your application, then you can go with this option.</p>
<p>You can have your desired page to be request validation off. For this, you have to add a tag ValidateRequest=&#8221;false&#8221; into the Page-directive on top of the page you want users to be able to input HTML and script tags.</p>
<p>Open your form page in code view.</p>
<p>See at the top line.</p>
<p>There might be the code like:</p>
<p><%@ Page Language="C#" AutoEventWireup="true" CodeFile="Add.aspx.cs" Inherits="Article.Admin_Article_Add" Title="Article Management | Add" %></p>
<p>You have to add ValidateRequest=&#8221;false&#8221; in it. The code should now look like:</p>
<p><%@ Page Language="C#" AutoEventWireup="true" CodeFile="Add.aspx.cs" Inherits="Article.Admin_Article_Add" Title="Article Management | Add" ValidateRequest="false" %></p>
<p>Now, you will be able to add HTML and script tags through this particular page.</p>
<p>#2 is a better solution than #1. But it depends upon your need and requirement :).</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=109&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/javascript-how-to-submit-form-and-change-form-action/' rel='bookmark' title='Permanent Link: Javascript: How to Submit form and Change form action?'>Javascript: How to Submit form and Change form action?</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-contact-form-7-quick-fix-spinning-arrow/' rel='bookmark' title='Permanent Link: WordPress Contact Form 7: Quick Fix to spinning arrow displays forever &#038; no success/error message displayed'>WordPress Contact Form 7: Quick Fix to spinning arrow displays forever &#038; no success/error message displayed</a></li>
<li><a href='http://blog.chapagain.com.np/pageispostback-property-a-solution-to-the-client-postback-problem/' rel='bookmark' title='Permanent Link: Page.IsPostBack property: A solution to the client postback problem'>Page.IsPostBack property: A solution to the client postback problem</a></li>
<li><a href='http://blog.chapagain.com.np/w3c-validation-iframe-error-with-xhtml-1-0-strict-doctype/' rel='bookmark' title='Permanent Link: W3C Validation: IFrame Error with XHTML 1.0 Strict Doctype'>W3C Validation: IFrame Error with XHTML 1.0 Strict Doctype</a></li>
<li><a href='http://blog.chapagain.com.np/regular-expression-check-validation-in-php/' rel='bookmark' title='Permanent Link: Regular Expression check, Validation in PHP'>Regular Expression check, Validation in PHP</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/aspnet-error-a-potentially-dangerous-requestform-value-was-detected-from-the-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Error : An HtmlSelect cannot have multiple items selected when Multiple is false.</title>
		<link>http://blog.chapagain.com.np/aspnet-error-an-htmlselect-cannot-have-multiple-items-selected-when-multiple-is-false/</link>
		<comments>http://blog.chapagain.com.np/aspnet-error-an-htmlselect-cannot-have-multiple-items-selected-when-multiple-is-false/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 17:31:04 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[problem]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=105</guid>
		<description><![CDATA[This error might occur if you have selected your selection list (dropdownlist) multiple times. You can add multiple=&#8221;true&#8221; e.g. in your selection list so as to enable multiple item select. If you don&#8217;t want your selection list to be multiple select enabled then you have to check whether you have selected the selection list multiple [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/magento-setup-multiple-currency-shop/' rel='bookmark' title='Permanent Link: Magento: Setup multiple currency shop'>Magento: Setup multiple currency shop</a></li>
<li><a href='http://blog.chapagain.com.np/aspnet-error-a-potentially-dangerous-requestform-value-was-detected-from-the-client/' rel='bookmark' title='Permanent Link: ASP.NET Error: A potentially dangerous Request.Form value was detected from the client'>ASP.NET Error: A potentially dangerous Request.Form value was detected from the client</a></li>
<li><a href='http://blog.chapagain.com.np/sql-error-cannot-insert-the-value-null-into-column-column-does-not-allow-nulls-insert-fails/' rel='bookmark' title='Permanent Link: SQL Error: Cannot insert the value NULL into column&#8230; column does not allow nulls. INSERT fails.'>SQL Error: Cannot insert the value NULL into column&#8230; column does not allow nulls. INSERT fails.</a></li>
<li><a href='http://blog.chapagain.com.np/multiple-file-upload-with-jquery-and-php/' rel='bookmark' title='Permanent Link: Multiple file upload with jQuery and php'>Multiple file upload with jQuery and php</a></li>
<li><a href='http://blog.chapagain.com.np/jquery-grey-out-background-and-preview-image-as-popup/' rel='bookmark' title='Permanent Link: jQuery: Grey out background and preview image as popup'>jQuery: Grey out background and preview image as popup</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">This error might occur if you have selected your selection list (dropdownlist) multiple times. You can add multiple=&#8221;true&#8221; e.g.<br />
<select Multiple="true"> in your selection list so as to enable multiple item select.</p>
<p>If you don&#8217;t want your selection list to be multiple select enabled then you have to check whether you have selected the selection list multiple times either in your design (aspx file) or in code (aspx.cs file).</p>
<p><span id="more-105"></span></p>
<p>if you have populated the dropdownlist from code (dynamically) then check it once again.</p>
<p>I had this problem occured during one of my project because i had populated the dropdownlist dynamically in Page_Load. I got rid of this error after putting the dropdownlist population code inside if(!IsPostBack) condition.</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=105&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/magento-setup-multiple-currency-shop/' rel='bookmark' title='Permanent Link: Magento: Setup multiple currency shop'>Magento: Setup multiple currency shop</a></li>
<li><a href='http://blog.chapagain.com.np/aspnet-error-a-potentially-dangerous-requestform-value-was-detected-from-the-client/' rel='bookmark' title='Permanent Link: ASP.NET Error: A potentially dangerous Request.Form value was detected from the client'>ASP.NET Error: A potentially dangerous Request.Form value was detected from the client</a></li>
<li><a href='http://blog.chapagain.com.np/sql-error-cannot-insert-the-value-null-into-column-column-does-not-allow-nulls-insert-fails/' rel='bookmark' title='Permanent Link: SQL Error: Cannot insert the value NULL into column&#8230; column does not allow nulls. INSERT fails.'>SQL Error: Cannot insert the value NULL into column&#8230; column does not allow nulls. INSERT fails.</a></li>
<li><a href='http://blog.chapagain.com.np/multiple-file-upload-with-jquery-and-php/' rel='bookmark' title='Permanent Link: Multiple file upload with jQuery and php'>Multiple file upload with jQuery and php</a></li>
<li><a href='http://blog.chapagain.com.np/jquery-grey-out-background-and-preview-image-as-popup/' rel='bookmark' title='Permanent Link: jQuery: Grey out background and preview image as popup'>jQuery: Grey out background and preview image as popup</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/aspnet-error-an-htmlselect-cannot-have-multiple-items-selected-when-multiple-is-false/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Page.IsPostBack property: A solution to the client postback problem</title>
		<link>http://blog.chapagain.com.np/pageispostback-property-a-solution-to-the-client-postback-problem/</link>
		<comments>http://blog.chapagain.com.np/pageispostback-property-a-solution-to-the-client-postback-problem/#comments</comments>
		<pubDate>Fri, 05 Oct 2007 11:34:07 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[panel]]></category>
		<category><![CDATA[postback]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/2007/10/05/pageispostback-property-a-solution-to-the-client-postback-problem/</guid>
		<description><![CDATA[Problem There is a .aspx page with some textbox and a submit button. User enters text in the textbox and clicks the submit button. Then the system shows that the data has been successfully posted or updated. But, when we view the database, the data just posted is not entered/updated there. Solution Use Page.IsPostBack property. [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/cascading-stylesheet-css-property-value-pairs/' rel='bookmark' title='Permanent Link: Cascading StyleSheet (CSS) :: Property Value Pairs'>Cascading StyleSheet (CSS) :: Property Value Pairs</a></li>
<li><a href='http://blog.chapagain.com.np/aspnet-error-a-potentially-dangerous-requestform-value-was-detected-from-the-client/' rel='bookmark' title='Permanent Link: ASP.NET Error: A potentially dangerous Request.Form value was detected from the client'>ASP.NET Error: A potentially dangerous Request.Form value was detected from the client</a></li>
<li><a href='http://blog.chapagain.com.np/magento-solution-to-error-404-not-found-in-admin-login-page/' rel='bookmark' title='Permanent Link: Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page'>Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-show-child-page-sub-page-list-in-parent-page-in-wordpress/' rel='bookmark' title='Permanent Link: How to show child page (sub page) list in parent page in wordpress?'>How to show child page (sub page) list in parent page in wordpress?</a></li>
<li><a href='http://blog.chapagain.com.np/jquery-grey-out-background-and-preview-image-as-popup/' rel='bookmark' title='Permanent Link: jQuery: Grey out background and preview image as popup'>jQuery: Grey out background and preview image as popup</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="text-align: justify"><strong>Problem</strong><o:p><br />
</o:p></p>
<p class="MsoNormal" style="text-align: justify">There is a .aspx page with some textbox and a submit button.<o:p></o:p></p>
<p class="MsoNormal" style="text-align: justify">User enters text in the textbox and clicks the submit button.<o:p> </o:p></p>
<p><span id="more-21"></span></p>
<p class="MsoNormal" style="text-align: justify">Then the system shows that the data has been successfully posted or updated.<o:p> </o:p></p>
<p class="MsoNormal" style="text-align: justify">But, when we view the database, the data just posted is not entered/updated there.<o:p> </o:p></p>
<p class="MsoNormal" style="text-align: justify"><strong>Solution</strong><o:p><br />
</o:p></p>
<p class="MsoNormal" style="text-align: justify">Use <em>Page.IsPostBack</em> property.<o:p> </o:p></p>
<p class="MsoNormal" style="text-align: justify">This property returns only a Boolean value: <em>true</em> if the page is being loaded in response to a client postback; otherwise, <em>false</em>. Default value is <em>false.</em></p>
<p class="MsoNormal" style="text-align: justify">More clearly:</p>
<p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.25in"><!--[if !supportLists]--><span>1)<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal">      </span></span><!--[endif]-->IsPostBack returns <em>false</em> if the page is being loaded and accessed for the first time</p>
<p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.25in"><!--[if !supportLists]--><span>2)<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal">      </span></span><!--[endif]-->IsPostBack returns <em>true</em> if the page is being loaded in response to a client postback.</p>
<p class="MsoNormal" style="text-align: justify"><o:p> </o:p><br />
<strong>Sample C# code:</strong><o:p><br />
</o:p></p>
<p class="MsoNormal" style="text-align: justify"><span style="font-size: 10pt; font-family: 'Courier New'">private void Page_Load(object sender, System.EventArgs e)<o:p></o:p><br />
<span></span>{<o:p></o:p></span></p>
<p class="MsoNormal" style="text-align: justify"><span style="font-size: 10pt; font-family: 'Courier New'"><span>   </span>if(!Page.IsPostBack)<o:p></o:p></span></p>
<p class="MsoNormal" style="text-align: justify"><span style="font-size: 10pt; font-family: 'Courier New'"><span>   </span>{<span>                       </span><o:p></o:p></span></p>
<p class="MsoNormal" style="text-align: justify"><span style="font-size: 10pt; font-family: 'Courier New'"><span>         </span><span></span>// your code to update/insert into database<span>  </span><o:p></o:p></span></p>
<p class="MsoNormal" style="text-align: justify"><span style="font-size: 10pt; font-family: 'Courier New'"><span>   </span>} </span></p>
<p class="MsoNormal" style="text-align: justify"><span style="font-size: 10pt; font-family: 'Courier New'"><span> </span>}</span><o:p> </o:p></p>
<p class="MsoNormal" style="text-align: justify">I had this problem when I was doing my semester project on ASP.NET and C#, one year back (well, at that time I had just started learning ASP.NET and C#). Then I googled the internet and found out about panel system (asp:Panel) in ASP.NET, i.e. using different panels to display and edit record/data. This took a lot of time to code and even manage the code and design as well. I had to write the same code twice. I found it very ineffective and again searched for a proper solution. Then I got to learn about IsPostBack property and all my hurdles were gone.<o:p> </o:p></p>
<p class="MsoNormal" style="text-align: justify">Cheers,</p>
<p class="MsoNormal" style="text-align: justify">Mukesh</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=21&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/cascading-stylesheet-css-property-value-pairs/' rel='bookmark' title='Permanent Link: Cascading StyleSheet (CSS) :: Property Value Pairs'>Cascading StyleSheet (CSS) :: Property Value Pairs</a></li>
<li><a href='http://blog.chapagain.com.np/aspnet-error-a-potentially-dangerous-requestform-value-was-detected-from-the-client/' rel='bookmark' title='Permanent Link: ASP.NET Error: A potentially dangerous Request.Form value was detected from the client'>ASP.NET Error: A potentially dangerous Request.Form value was detected from the client</a></li>
<li><a href='http://blog.chapagain.com.np/magento-solution-to-error-404-not-found-in-admin-login-page/' rel='bookmark' title='Permanent Link: Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page'>Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-show-child-page-sub-page-list-in-parent-page-in-wordpress/' rel='bookmark' title='Permanent Link: How to show child page (sub page) list in parent page in wordpress?'>How to show child page (sub page) list in parent page in wordpress?</a></li>
<li><a href='http://blog.chapagain.com.np/jquery-grey-out-background-and-preview-image-as-popup/' rel='bookmark' title='Permanent Link: jQuery: Grey out background and preview image as popup'>jQuery: Grey out background and preview image as popup</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/pageispostback-property-a-solution-to-the-client-postback-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing ASP.NET</title>
		<link>http://blog.chapagain.com.np/installing-aspnet/</link>
		<comments>http://blog.chapagain.com.np/installing-aspnet/#comments</comments>
		<pubDate>Fri, 05 Oct 2007 11:47:34 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[.net framework]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/2007/10/05/installing-aspnet/</guid>
		<description><![CDATA[Ok, you installed IIS server in your Windows Operating System. Then, I suppose you installed .NET Framework. This much in enough to run simple .asp page but if you try to run .aspx (i.e. ASP.NET page extension) page, you cannot. The page will not run because ASP.NET is not installed yet in your computer although [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/aspnet-error-a-potentially-dangerous-requestform-value-was-detected-from-the-client/' rel='bookmark' title='Permanent Link: ASP.NET Error: A potentially dangerous Request.Form value was detected from the client'>ASP.NET Error: A potentially dangerous Request.Form value was detected from the client</a></li>
<li><a href='http://blog.chapagain.com.np/php-extension-error-while-installing-magento/' rel='bookmark' title='Permanent Link: PHP extension error while installing Magento'>PHP extension error while installing Magento</a></li>
<li><a href='http://blog.chapagain.com.np/installing-firefox-4-in-ubuntu-10-04-10-10/' rel='bookmark' title='Permanent Link: Installing Firefox 4 in Ubuntu 10.04 &#038; 10.10'>Installing Firefox 4 in Ubuntu 10.04 &#038; 10.10</a></li>
<li><a href='http://blog.chapagain.com.np/installing-love/' rel='bookmark' title='Permanent Link: Installing Love'>Installing Love</a></li>
<li><a href='http://blog.chapagain.com.np/mysql-installation-problem/' rel='bookmark' title='Permanent Link: MySQL Installation Problem'>MySQL Installation Problem</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="text-align: justify">Ok, you installed IIS server in your Windows Operating System.<o:p> </o:p></p>
<p class="MsoNormal" style="text-align: justify">Then, I suppose you installed .NET Framework.<o:p> </o:p></p>
<p><span id="more-20"></span></p>
<p class="MsoNormal" style="text-align: justify">This much in enough to run simple .asp page but if you try to run .aspx (i.e. ASP.NET page extension) page, you cannot. The page will not run because ASP.NET is not installed yet in your computer although you have installed .NET Framework. ASP.NET should be installed in order to run .aspx pages.<o:p> </o:p></p>
<p class="MsoNormal" style="text-align: justify">How to install ASP.NET?<o:p> </o:p></p>
<p class="MsoNormal" style="text-align: justify">There are some steps you should follow to install ASP.NET in your computer. Well, I am feeling lazy (actually I am a lazy guy, a tortoise :D) to write down the steps here. You can visit the link below that describes very clearly about the steps to install ASP.NET and run .ASPX page.</p>
<p class="MsoNormal" style="text-align: justify"><a href="http://www.geekpedia.com/tutorial25_Setting-up-your-ASP.NET-server-%28IIS%29.html">http://www.geekpedia.com/tutorial25_Setting-up-your-ASP.NET-server-%28IIS%29.html</a></p>
<p class="MsoNormal" style="text-align: justify">I myself followed this link to install ASP.NET in my computer for the first time.<o:p> </o:p></p>
<p class="MsoNormal" style="text-align: justify">Cheers,</p>
<p class="MsoNormal" style="text-align: justify">Mukesh</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=20&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/aspnet-error-a-potentially-dangerous-requestform-value-was-detected-from-the-client/' rel='bookmark' title='Permanent Link: ASP.NET Error: A potentially dangerous Request.Form value was detected from the client'>ASP.NET Error: A potentially dangerous Request.Form value was detected from the client</a></li>
<li><a href='http://blog.chapagain.com.np/php-extension-error-while-installing-magento/' rel='bookmark' title='Permanent Link: PHP extension error while installing Magento'>PHP extension error while installing Magento</a></li>
<li><a href='http://blog.chapagain.com.np/installing-firefox-4-in-ubuntu-10-04-10-10/' rel='bookmark' title='Permanent Link: Installing Firefox 4 in Ubuntu 10.04 &#038; 10.10'>Installing Firefox 4 in Ubuntu 10.04 &#038; 10.10</a></li>
<li><a href='http://blog.chapagain.com.np/installing-love/' rel='bookmark' title='Permanent Link: Installing Love'>Installing Love</a></li>
<li><a href='http://blog.chapagain.com.np/mysql-installation-problem/' rel='bookmark' title='Permanent Link: MySQL Installation Problem'>MySQL Installation Problem</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/installing-aspnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
