<?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:trackback="http://madskills.com/public/xml/rss/module/trackback/"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:media="http://search.yahoo.com/mrss/"
    xmlns:evnet="http://www.mscommunities.com/rssmodule/"
    >
<channel>
    <title>ASP.NET MVC Tutorials</title>
    <link>http://www.asp.net/learn/mvc/</link>
    <description>ASP.NET MVC Tutorials</description>
    <dc:language>en-US</dc:language>
    <generator>RSS generated by www.asp.net</generator>
    <item>
        <dc:creator>ASP.NET MVC Tutorials</dc:creator>
        <title>Users and Roles On The Production Website</title>
        <link>http://www.asp.net/Learn/mvc/tutorial-16-vb.aspx</link>
        <pubDate>Tuesday, 9 Jun 2009</pubDate>
        <description>The ASP.NET Website Administration Tool (WSAT) provides a web-based user interface for configuring Membership and Roles settings and for creating, editing, and deleting users and roles. Unfortunately, the WSAT only works when visited from localhost, meaning that you cannot reach the production website&apos;s Administration Tool through your browser. The good news is that there are workarounds that make it possible to manage users and roles on production. This tutorial looks at these workarounds and others. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-16-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-16-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET MVC Tutorials</dc:creator>
        <title>Precompiling Your Website</title>
        <link>http://www.asp.net/Learn/mvc/tutorial-15-vb.aspx</link>
        <pubDate>Tuesday, 9 Jun 2009</pubDate>
        <description>Visual Studio offers ASP.NET developers two types of projects: Web Application Projects (WAPs) and Web Site Projects (WSPs). One of the key differences between the two project types is that WAPs must have the code explicitly compiled prior to deployment whereas the code in a WSP can be automatically compiled on the web server. However, it is possible to precompile a WSP prior to deployment. This tutorial explores the benefits of precompilation and shows how to precompile a website from within Visual Studio and from the command line. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-15-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-15-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET MVC Tutorials</dc:creator>
        <title>Logging Error Details with ELMAH</title>
        <link>http://www.asp.net/Learn/mvc/tutorial-14-vb.aspx</link>
        <pubDate>Tuesday, 9 Jun 2009</pubDate>
        <description>Error Logging Modules And Handlers (ELMAH) offers another approach to logging runtime errors in a production environment. ELMAH is a free, open source error logging library that includes features like error filtering and the ability to view the error log from a web page, as an RSS feed, or to download it as a comma-delimited file. This tutorial walks through downloading and configuring ELMAH. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-14-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-14-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET MVC Tutorials</dc:creator>
        <title>Logging Error Details with ASP.NET Health Monitoring</title>
        <link>http://www.asp.net/Learn/mvc/tutorial-13-vb.aspx</link>
        <pubDate>Tuesday, 9 Jun 2009</pubDate>
        <description>Microsoft&apos;s health monitoring system provides an easy and customizable way to log various web events, including unhandled exceptions. This tutorial walks through setting up the health monitoring system to log unhandled exceptions to a database and to notify developers via an e-mail message. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-13-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-13-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET MVC Tutorials</dc:creator>
        <title>Processing Unhandled Exceptions</title>
        <link>http://www.asp.net/Learn/mvc/tutorial-12-vb.aspx</link>
        <pubDate>Tuesday, 9 Jun 2009</pubDate>
        <description>When a runtime error occurs on a web application in production it is important to notify a developer and to log the error so that it may be diagnosed at a later point in time. This tutorial provides an overview of how ASP.NET processes runtime errors and looks at one way to have custom code execute whenever an unhandled exception bubbles up to the ASP.NET runtime. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-12-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-12-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET MVC Tutorials</dc:creator>
        <title>Displaying a Custom Error Page</title>
        <link>http://www.asp.net/Learn/mvc/tutorial-11-vb.aspx</link>
        <pubDate>Tuesday, 9 Jun 2009</pubDate>
        <description>What does the user see when a runtime error occurs in an ASP.NET web application? The answer depends on how the website&apos;s &amp;lt;customErrors&amp;gt; configuration. By default, users are shown an unsightly yellow screen proclaiming that a runtime error has occurred. This tutorial shows how to customize these settings to display an aesthetically-pleasing custom error page that matches your site&apos;s look and feel. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-11-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-11-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET MVC Tutorials</dc:creator>
        <title>Validation with the Data Annotation Validators</title>
        <link>http://www.asp.net/Learn/mvc/tutorial-39-vb.aspx</link>
        <pubDate>Friday, 29 May 2009</pubDate>
        <description>Take advantage of the Data Annotation Model Binder to perform validation within an ASP.NET MVC application. Learn how to use the different types of validator attributes and work with them in the Microsoft Entity Framework. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-39-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-39-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET MVC Tutorials</dc:creator>
        <title>How do I use the HTML Editor Control?</title>
        <link>http://www.asp.net/Learn/mvc/tutorial-50-vb.aspx</link>
        <pubDate>Tuesday, 12 May 2009</pubDate>
        <description>HTMLEditor is an ASP.NET AJAX Control that allows you to easily create and edit HTML content via buttons in a toolbar. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-50-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-50-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET MVC Tutorials</dc:creator>
        <title>Creating a Custom AJAX Control Toolkit Control Extender</title>
        <link>http://www.asp.net/Learn/mvc/tutorial-49-vb.aspx</link>
        <pubDate>Tuesday, 12 May 2009</pubDate>
        <description>Custom Extenders enable you to customize and extend the capabilities of ASP.NET controls without having to create new classes. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-49-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-49-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET MVC Tutorials</dc:creator>
        <title>Using AJAX Control Toolkit Controls and Control Extenders</title>
        <link>http://www.asp.net/Learn/mvc/tutorial-48-vb.aspx</link>
        <pubDate>Tuesday, 12 May 2009</pubDate>
        <description>Learn how to add AJAX Control Toolkit controls and extenders to your ASP.NET pages. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-48-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-48-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET MVC Tutorials</dc:creator>
        <title>Get Started with the AJAX Control Toolkit</title>
        <link>http://www.asp.net/Learn/mvc/tutorial-47-vb.aspx</link>
        <pubDate>Tuesday, 12 May 2009</pubDate>
        <description>Learn all you need to know to get started using the AJAX Control Toolkit. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-47-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-47-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET MVC Tutorials</dc:creator>
        <title>How do I use the ComboBox Control?</title>
        <link>http://www.asp.net/Learn/mvc/tutorial-52-vb.aspx</link>
        <pubDate>Tuesday, 12 May 2009</pubDate>
        <description>ComboBox is an ASP.NET AJAX control that combines the flexibility of a TextBox with a list of options from which users can choose. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-52-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-52-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET MVC Tutorials</dc:creator>
        <title>Using the ColorPicker Control Extender</title>
        <link>http://www.asp.net/Learn/mvc/tutorial-51-vb.aspx</link>
        <pubDate>Tuesday, 12 May 2009</pubDate>
        <description>ColorPicker is an ASP.NET AJAX extender that provides client-side color-picking functionality with UI in a popup control . It can be attached to any ASP.NET TextBox control. It. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-51-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-51-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET MVC Tutorials</dc:creator>
        <title>Strategies for Database Development and Deployment</title>
        <link>http://www.asp.net/Learn/mvc/tutorial-10-vb.aspx</link>
        <pubDate>Thursday, 23 Apr 2009</pubDate>
        <description>When deploying a data-driven application for the first time you can blindly copy the database in the development environment to the production environment. But performing a blind copy in subsequent deployments will overwrite any data entered into the production database. Instead, deploying a database involves applying the changes made to the development database since the last deployment onto the production database. This tutorial examines these challenges and offers various strategies to assist with chronicling and applying the changes made to the database since the last deployment. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-10-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-10-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET MVC Tutorials</dc:creator>
        <title>Configuring a Website that Uses Application Services</title>
        <link>http://www.asp.net/Learn/mvc/tutorial-09-vb.aspx</link>
        <pubDate>Thursday, 23 Apr 2009</pubDate>
        <description>ASP.NET version 2.0 introduced a series of application services, which are part of the .NET Framework and serve as a suite of building block services that you can use to add rich functionality to your web application. This tutorial explores how to configure a website in the production environment to use application services and addresses common issues with managing user accounts and roles on the production environment. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-09-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/Learn/mvc/tutorial-09-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
</channel>
</rss>