<?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>Fullsix Blog &#187; ASP.NET</title>
	<atom:link href="http://blogs.fullsix.pt/tag/aspnet/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.fullsix.pt</link>
	<description></description>
	<lastBuildDate>Thu, 31 Mar 2011 22:05:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Microsoft WebMatrix, more than a toy</title>
		<link>http://blogs.fullsix.pt/2011/03/08/microsoft-webmatrix-more-than-a-toy/</link>
		<comments>http://blogs.fullsix.pt/2011/03/08/microsoft-webmatrix-more-than-a-toy/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 00:29:39 +0000</pubDate>
		<dc:creator>ricardo.fiel</dc:creator>
				<category><![CDATA[Engineering]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://blogs.fullsix.pt/2011/03/08/microsoft-webmatrix-more-than-a-toy/</guid>
		<description><![CDATA[Not long ago, Microsoft released WebMatrix, a new development tool that aims to make web development easy. At first, I wasn’t very convinced with it, and I was quite happy with Visual Studio 2010 for my web dev work. Did we really need another development tool for the Microsoft web stack? Visual Studio even has [...]]]></description>
		<wfw:commentRss>http://blogs.fullsix.pt/2011/03/08/microsoft-webmatrix-more-than-a-toy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Umbraco &#8211; Write Permissions</title>
		<link>http://blogs.fullsix.pt/2009/10/13/umbraco-write-permissions/</link>
		<comments>http://blogs.fullsix.pt/2009/10/13/umbraco-write-permissions/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 13:48:18 +0000</pubDate>
		<dc:creator>nuno.lourenco</dc:creator>
				<category><![CDATA[Engineering]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Umbraco]]></category>

		<guid isPermaLink="false">http://blogs.fullsix.pt/2009/10/13/umbraco-write-permissions/</guid>
		<description><![CDATA[Para quem usa umbraco, aqui deixo uma lista dos directórios que necessitam de ter permissões de escrita/modificação: bin config css data media umbraco usercontrols xslt Happy coding]]></description>
		<wfw:commentRss>http://blogs.fullsix.pt/2009/10/13/umbraco-write-permissions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forms Authentication em 15 minutos</title>
		<link>http://blogs.fullsix.pt/2009/08/07/forms-authentication-em-15-minutos/</link>
		<comments>http://blogs.fullsix.pt/2009/08/07/forms-authentication-em-15-minutos/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 10:11:29 +0000</pubDate>
		<dc:creator>Nuno Costa</dc:creator>
				<category><![CDATA[Engineering]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[forms authentication]]></category>

		<guid isPermaLink="false">http://blogs.fullsix.pt/2009/08/07/forms-authentication-em-15-minutos/</guid>
		<description><![CDATA[Se quisermos ter um site ou parte dele accessivel apenas por utilizadores registados esta é uma forma rápida de implementar forms authentication.   Criar uma página para autenticação e adicionar um controlo login No evento Authenticate do controlo colocar o seguinte código : protected void Login1_Authenticate(object sender, AuthenticateEventArgs e) {     if (FormsAuthentication.Authenticate(Login1.UserName, Login1.Password))     [...]]]></description>
		<wfw:commentRss>http://blogs.fullsix.pt/2009/08/07/forms-authentication-em-15-minutos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Textbox TextMode = Password</title>
		<link>http://blogs.fullsix.pt/2009/08/04/aspnet-textbox-textmode-password/</link>
		<comments>http://blogs.fullsix.pt/2009/08/04/aspnet-textbox-textmode-password/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 18:22:25 +0000</pubDate>
		<dc:creator>nuno.lourenco</dc:creator>
				<category><![CDATA[Engineering]]></category>
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://blogs.fullsix.pt/2009/08/04/aspnet-textbox-textmode-password/</guid>
		<description><![CDATA[O modo de afectar o conteúdo de o controlo ASP.NET Textbox, em que esteja definido o modo de texto, do input, como Password (TextMode = Password), deverá ser diferente do habitual: 1: password.Text = &#34;password&#34;; Mas sim, deverá ser: 1: password.Attributes.Add(&#34;value&#34;, &#34;password&#34;); Happy codding]]></description>
		<wfw:commentRss>http://blogs.fullsix.pt/2009/08/04/aspnet-textbox-textmode-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET SqlMembershipProvider schema version error</title>
		<link>http://blogs.fullsix.pt/2008/03/19/asp-net-sqlmembershipprovider-schema-version-error/</link>
		<comments>http://blogs.fullsix.pt/2008/03/19/asp-net-sqlmembershipprovider-schema-version-error/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 23:59:39 +0000</pubDate>
		<dc:creator>ricardo.fiel</dc:creator>
				<category><![CDATA[Engineering]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://blogs.dev.fullsix.local/?p=67</guid>
		<description><![CDATA[While migrating a database from SQL Server 2005 to SQL Server 2000, a colleague was faced with this exception: The &#8216;System.Web.Security.SqlMembershipProvider&#8217; requires a database schema compatible with schema version &#8217;1&#8242;. However, the current database schema is not compatible with this version. You may need to either install a compatible schema with aspnet_reqsql.exe (available in the [...]]]></description>
		<wfw:commentRss>http://blogs.fullsix.pt/2008/03/19/asp-net-sqlmembershipprovider-schema-version-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The ADO guy on ADO.NET Data Services</title>
		<link>http://blogs.fullsix.pt/2008/01/29/the-ado-guy-on-ado-net-data-services/</link>
		<comments>http://blogs.fullsix.pt/2008/01/29/the-ado-guy-on-ado-net-data-services/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 23:51:46 +0000</pubDate>
		<dc:creator>ricardo.fiel</dc:creator>
				<category><![CDATA[Engineering]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Futures]]></category>

		<guid isPermaLink="false">http://blogs.dev.fullsix.local/?p=59</guid>
		<description><![CDATA[Scott Hanselman just published his 97th podcast, titled ADO.NET &#8220;Astoria&#8221; Data Services with Shawn Wildermuth. It&#8217;s a great listen. Shawn Wildermuth is the author of the highly acclaimed book Pragmatic ADO.NET. Some of the highlights of the show are: Why &#8220;Astoria&#8221; does not expose your database to the web How Linq fits in the picture [...]]]></description>
		<wfw:commentRss>http://blogs.fullsix.pt/2008/01/29/the-ado-guy-on-ado-net-data-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

