<?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; simple</title>
	<atom:link href="http://danfolkes.com/index.php/tag/simple/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/simple/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>
	</channel>
</rss>

