<?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>DAN FOLKES &#187; Web</title>
	<atom:link href="http://danfolkes.com/index.php/tag/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://danfolkes.com</link>
	<description>programmers blog</description>
	<lastBuildDate>Fri, 03 Feb 2012 15:58:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<atom:link rel="next" href="http://danfolkes.com/index.php/tag/web/feed/?page=2" />

		<item>
		<title>Quick n Easy &#8211; Forms Authentication &#8211; Web.conf</title>
		<link>http://danfolkes.com/2010/06/15/quick-n-easy-forms-authentication-web-conf/</link>
		<comments>http://danfolkes.com/2010/06/15/quick-n-easy-forms-authentication-web-conf/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 19:51:40 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Authentication]]></category>
		<category><![CDATA[authorization]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[conf]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[Forms Authentication]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[Quick]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[vb.net]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web.conf]]></category>

		<guid isPermaLink="false">http://danfolkes.com/?p=574</guid>
		<description><![CDATA[I use the login page from here: http://www.15seconds.com/issue/020220.htm &#60;!-- Web.Config Configuration File --&#62; &#160; &#60;configuration&#62; &#160; &#60;system.web&#62; &#60;customErrors mode=&#34;Off&#34;/&#62; &#60;compilation debug=&#34;true&#34;/&#62; &#160; &#60;authentication mode=&#34;Forms&#34;&#62; &#60;forms loginUrl=&#34;FeedBack_Admin/login.aspx&#34; protection=&#34;All&#34; timeout=&#34;30&#34;&#62; &#60;credentials passwordFormat=&#34;Clear&#34;&#62; &#60;user name=&#34;admin&#34; password=&#34;pass&#34;/&#62; &#60;/credentials&#62; &#60;/forms&#62; &#60;/authentication&#62; &#60;authorization&#62; &#60;allow users=&#34;*&#34; /&#62; &#60;/authorization&#62; &#60;/system.web&#62; &#160; &#60;location path=&#34;FeedBack_Admin&#34;&#62; &#60;system.web&#62; &#60;authorization&#62; &#60;deny users=&#34;?&#34; /&#62; &#60;/authorization&#62; &#60;/system.web&#62; &#60;/location&#62; &#60;location path=&#34;Content_Admin&#34;&#62; [...]


Related posts:<ol><li><a href='http://danfolkes.com/2008/09/30/python-wunderground-todays-weather-to-email-sms-to-phone/' rel='bookmark' title='Permanent Link: Python: Wunderground Todays Weather to Email SMS to Phone'>Python: Wunderground Todays Weather to Email SMS to Phone</a></li>
<li><a href='http://danfolkes.com/2008/04/21/qrquick-response-codes/' rel='bookmark' title='Permanent Link: QR(Quick Response) Codes'>QR(Quick Response) Codes</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I use the login page from here:<br />
<a target="_blank" href="http://www.15seconds.com/issue/020220.htm">http://www.15seconds.com/issue/020220.htm</a></p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;">&lt;!-- Web.Config Configuration File --&gt;
&nbsp;
&lt;configuration&gt;
&nbsp;
  &lt;system.web&gt;
    &lt;customErrors mode=<span style="color: #800000;">&quot;Off&quot;</span>/&gt;
    &lt;compilation debug=<span style="color: #800000;">&quot;true&quot;</span>/&gt;
&nbsp;
    &lt;authentication mode=<span style="color: #800000;">&quot;Forms&quot;</span>&gt;
      &lt;forms loginUrl=<span style="color: #800000;">&quot;FeedBack_Admin/login.aspx&quot;</span> protection=<span style="color: #800000;">&quot;All&quot;</span> timeout=<span style="color: #800000;">&quot;30&quot;</span>&gt;
        &lt;credentials passwordFormat=<span style="color: #800000;">&quot;Clear&quot;</span>&gt;
          &lt;user name=<span style="color: #800000;">&quot;admin&quot;</span> password=<span style="color: #800000;">&quot;pass&quot;</span>/&gt;
        &lt;/credentials&gt;
      &lt;/forms&gt;
    &lt;/authentication&gt;
    &lt;authorization&gt;
      &lt;allow users=<span style="color: #800000;">&quot;*&quot;</span> /&gt;
    &lt;/authorization&gt;
  &lt;/system.web&gt;
&nbsp;
  &lt;location path=<span style="color: #800000;">&quot;FeedBack_Admin&quot;</span>&gt;
    &lt;system.web&gt;
      &lt;authorization&gt;
        &lt;deny users=<span style="color: #800000;">&quot;?&quot;</span> /&gt;
      &lt;/authorization&gt;
    &lt;/system.web&gt;
  &lt;/location&gt;
  &lt;location path=<span style="color: #800000;">&quot;Content_Admin&quot;</span>&gt;
    &lt;system.web&gt;
      &lt;authorization&gt;
        &lt;deny users=<span style="color: #800000;">&quot;?&quot;</span> /&gt;
      &lt;/authorization&gt;
    &lt;/system.web&gt;
  &lt;/location&gt;
&lt;/configuration&gt;</pre></div></div>



<p>Related posts:<ol><li><a href='http://danfolkes.com/2008/09/30/python-wunderground-todays-weather-to-email-sms-to-phone/' rel='bookmark' title='Permanent Link: Python: Wunderground Todays Weather to Email SMS to Phone'>Python: Wunderground Todays Weather to Email SMS to Phone</a></li>
<li><a href='http://danfolkes.com/2008/04/21/qrquick-response-codes/' rel='bookmark' title='Permanent Link: QR(Quick Response) Codes'>QR(Quick Response) Codes</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://danfolkes.com/2010/06/15/quick-n-easy-forms-authentication-web-conf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>CWS &#8211; Chord Web Service</title>
		<link>http://danfolkes.com/2009/03/31/cws-chord-web-service/</link>
		<comments>http://danfolkes.com/2009/03/31/cws-chord-web-service/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 19:56:20 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Chord]]></category>
		<category><![CDATA[Chords]]></category>
		<category><![CDATA[CWS]]></category>
		<category><![CDATA[deliver]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[guitars]]></category>
		<category><![CDATA[musical]]></category>
		<category><![CDATA[Service]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Service]]></category>

		<guid isPermaLink="false">http://danfolkes.com/index.php/2009/03/31/cws-chord-web-service/</guid>
		<description><![CDATA[I am creating a web service for musicians that will allow them to reference an abundance of musical references on the fly using AJAX. Firstly, it will deliver chords and fingerings of chords for guitars to the users websites (think Google Maps). My goal is to enhance the web. Here is the site: http://cws.danfolkes.com It&#8217;s [...]


Related posts:<ol><li><a href='http://danfolkes.com/2000/05/06/colbert-report-persian-gulf-secret-code/' rel='bookmark' title='Permanent Link: Colbert Report &#8211; Persian Gulf &#8211; Secret Code'>Colbert Report &#8211; Persian Gulf &#8211; Secret Code</a></li>
<li><a href='http://danfolkes.com/2009/12/15/view-of-my-sites-traffic/' rel='bookmark' title='Permanent Link: View of My Sites Traffic'>View of My Sites Traffic</a></li>
<li><a href='http://danfolkes.com/2000/05/21/datagov-runs-on-drupal/' rel='bookmark' title='Permanent Link: Data.Gov Runs on Drupal'>Data.Gov Runs on Drupal</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://danfolkes.com/wp-content/uploads/2009/03/cwd-chord-web-service.gif"><img src="http://danfolkes.com/wp-content/uploads/2009/03/cwd-chord-web-service-253x300.gif" alt="cwd-chord-web-service" title="cwd-chord-web-service" width="253" height="300" class="alignnone size-medium wp-image-221" align="left" /></a></p>
<p>I am creating a web service for musicians that will allow them to reference an abundance of musical references on the fly using AJAX.</p>
<p>Firstly, it will deliver chords and fingerings of chords for guitars to the users websites (think Google Maps).</p>
<p>My goal is to enhance the web.</p>
<p>Here is the site: <em><strong><a href="http://cws.danfolkes.com" target="_blank">http://cws.danfolkes.com</a></strong></em></p>
<p>It&#8217;s still in development, but it&#8217;s getting close to launch.</p>
<p>Let me know what you think (only if it&#8217;s nice) <img src='http://danfolkes.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>


<p>Related posts:<ol><li><a href='http://danfolkes.com/2000/05/06/colbert-report-persian-gulf-secret-code/' rel='bookmark' title='Permanent Link: Colbert Report &#8211; Persian Gulf &#8211; Secret Code'>Colbert Report &#8211; Persian Gulf &#8211; Secret Code</a></li>
<li><a href='http://danfolkes.com/2009/12/15/view-of-my-sites-traffic/' rel='bookmark' title='Permanent Link: View of My Sites Traffic'>View of My Sites Traffic</a></li>
<li><a href='http://danfolkes.com/2000/05/21/datagov-runs-on-drupal/' rel='bookmark' title='Permanent Link: Data.Gov Runs on Drupal'>Data.Gov Runs on Drupal</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://danfolkes.com/2009/03/31/cws-chord-web-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://danfolkes.com/wp-content/uploads/2009/03/cwd-chord-web-service-150x150.gif" />
		<media:content url="http://danfolkes.com/wp-content/uploads/2009/03/cwd-chord-web-service.gif" medium="image">
			<media:title type="html">cwd-chord-web-service</media:title>
			<media:thumbnail url="http://danfolkes.com/wp-content/uploads/2009/03/cwd-chord-web-service-150x150.gif" />
		</media:content>
	</item>
	</channel>
</rss>

