<?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>FettesPS &#187; asp</title>
	<atom:link href="http://www.fettesps.com/tag/asp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fettesps.com</link>
	<description>Fettes Programming Solutions</description>
	<lastBuildDate>Sun, 22 Jan 2012 18:21:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Fixing IIS&#8217;s &#8220;Failed to start monitoring changes to [...] because access is denied&#8221; Error</title>
		<link>http://www.fettesps.com/fixing-iiss-failed-to-start-monitoring-changes-to-because-access-is-denied-error/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fixing-iiss-failed-to-start-monitoring-changes-to-because-access-is-denied-error</link>
		<comments>http://www.fettesps.com/fixing-iiss-failed-to-start-monitoring-changes-to-because-access-is-denied-error/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 01:01:51 +0000</pubDate>
		<dc:creator>FettesPS</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.fettesps.com/?p=1512</guid>
		<description><![CDATA[Ran into a weird error today. I had IIS serving pages on my devel machine and after working out the kinks in my code I went to FTP them to the production server. Since that machine didn&#8217;t have FTP I shared the folder and uploaded them from another machine that was on my desk. After [...]]]></description>
			<content:encoded><![CDATA[<p>Ran into a weird error today.  I had IIS serving pages on my devel machine and after working out the kinks in my code I went to FTP them to the production server.  Since that machine didn&#8217;t have FTP I shared the folder and uploaded them from another machine that was on my desk.  After that I went to reload the page and got the following error:</p>
<pre class="brush: plain; title: ; notranslate">Failed to start monitoring changes to [...] because access is denied </pre>
<p>I figured it was because I had shared the page and IIS must not like that, so I unshared it expecting that to resolve the issue &#8212; it did not.  From there I dug through many pages of Google results all telling me to make sure the files weren&#8217;t marked Read Only and to make sure the ASPNET user had permissions.  Interestingly enough such a user did not exist on my machine, possibly due to a different version of IIS or the fact that I do not have Visual Studio.net installed on that system.</p>
<p>It wasn&#8217;t until I compared permissions with another web folder that still worked that I spotted the difference.  One had permission granted access to &#8220;Authenticated Users&#8221; and given it Modify permissions.  After following these steps I was once again able to serve pages:</p>
<ol>
<li>Right Click the Virtual Directory in IIS</li>
<li>Click &#8220;Edit Permissions&#8230;&#8221;</li>
<li>Select the Security Tab</li>
<li>Click the Edit button</li>
<li>Click the Add button</li>
<li>Type &#8220;Authenticated  Users&#8221; †</li>
<li>Click the Check Names button to ensure that it recognizes the name</li>
<li>Click OK</li>
<li>Ensure the Modify checkbox is checked</li>
<li>Click OK until all remaining popup windows are closed</li>
</ol>
<p>† If a name is not recognized it will pop up a &#8220;Name Not Found&#8221; box, whereas if it is recognized it will prefix it with your computer name and underline it (e.g.: <u>fettesps\username</u>).<br />
If Authenicated Users is not recognized as a user, try ASPNET instead, which is what most guides suggested (but did not work for me).</p>
<p>After making these changes you should now be able to access your site again.  If not, please consult <a href="http://support.microsoft.com/kb/317955">Microsoft&#8217;s Knowledge Base</a> article for more possible solutions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fettesps.com/fixing-iiss-failed-to-start-monitoring-changes-to-because-access-is-denied-error/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ASP MagicGrid</title>
		<link>http://www.fettesps.com/asp-magicgrid/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=asp-magicgrid</link>
		<comments>http://www.fettesps.com/asp-magicgrid/#comments</comments>
		<pubDate>Sun, 03 Oct 2004 06:37:10 +0000</pubDate>
		<dc:creator>FettesPS</dc:creator>
				<category><![CDATA[ASP 3.0]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[datagrid]]></category>

		<guid isPermaLink="false">http://www.fettesps.com/blog/?p=79</guid>
		<description><![CDATA[I stumbled upon a site called CodeToad today, in itself its a handy page &#8212; lots of different scripts available. However I nearly bit my tounge when I saw this one. This script is written in ASP 3.0, and it set up to work with an Access database, however it is quite easy to make [...]]]></description>
			<content:encoded><![CDATA[<p>I stumbled upon a site called CodeToad today, in itself its a handy page &#8212; lots of different scripts available.  However I  nearly bit my tounge when I saw this one.
</p>
<p><P><br />
This script is written in ASP 3.0, and it set up to work with an Access database, however it is quite easy to make it work with any other database.  You can easily Add, Edit or Delete records, as well as Cut, Copy and Paste  through drag and dropping.  Very handy little script, and very well written.
</p>
<p>
Last summer I spent countless hours trying to write a datagrid script like this, from scratch. It was a feature I was accustomed to in ASP.net and could not find a prewritten script anywhere&#8230; and believe me I tried.  I finally gave up on writing my own, due to the issue that I was running low on time and knew that I could just use ASP.net to make one.  However almost a year later I find myself stumbling upon something I had searched so hard to find&#8230; Go figure.
</p>
<p>
So in case I find myself needing this again, or some <abbr title='Me have visitors? Yeah I wish...'>visitor</abbr> of this site should like to make use of it, here is the link.</p>
<p><a href="http://www.codetoad.com/asp_magic_grid.asp">Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fettesps.com/asp-magicgrid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

