<?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 Data Access Tutorials</title>
    <link>http://www.asp.net/learn/data-access/</link>
    <description>ASP.NET Data Access Tutorials</description>
    <dc:language>en-US</dc:language>
    <generator>RSS generated by www.asp.net</generator>
    <item>
        <dc:creator>ASP.NET Data Access Tutorials</dc:creator>
        <title>Understanding Action Filters</title>
        <link>http://www.asp.net/learn/data-access/tutorial-14-vb.aspx</link>
        <pubDate>Thursday, 16 Oct 2008</pubDate>
        <description>The goal of this tutorial is to explain action filters. An action filter is an attribute that you can apply to a controller action -- or an entire controller -- that modifies the way in which the action is executed. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/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/data-access/tutorial-14-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET Data Access Tutorials</dc:creator>
        <title>Creating Page Layouts with View Master Pages</title>
        <link>http://www.asp.net/learn/data-access/tutorial-12-vb.aspx</link>
        <pubDate>Thursday, 16 Oct 2008</pubDate>
        <description>In this tutorial, you learn how to create a common page layout for multiple pages in your application by taking advantage of view master pages. You can use a view master page, for example, to define a two-column page layout and use the two-column layout for all of the pages in your web application. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/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/data-access/tutorial-12-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET Data Access Tutorials</dc:creator>
        <title>Passing Data to View Master Pages</title>
        <link>http://www.asp.net/learn/data-access/tutorial-13-vb.aspx</link>
        <pubDate>Thursday, 16 Oct 2008</pubDate>
        <description>The goal of this tutorial is to explain how you can pass data from a controller to a view master page. We examine two strategies for passing data to a view master page. First, we discuss an easy solution that results in an application that is difficult to maintain. Next, we examine a much better solution that requires a little more initial work but results in a much more maintainable application. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/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/data-access/tutorial-13-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET Data Access Tutorials</dc:creator>
        <title>Displaying a Table of Database Data</title>
        <link>http://www.asp.net/learn/data-access/tutorial-11-vb.aspx</link>
        <pubDate>Tuesday, 7 Oct 2008</pubDate>
        <description>In this tutorial, I demonstrate two methods of displaying a set of database records. I show two methods of formatting a set of database records in an HTML table. First, I show how you can format the database records directly within a view. Next, I demonstrate how you can take advantage of partials when formatting database records. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/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/data-access/tutorial-11-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET Data Access Tutorials</dc:creator>
        <title>Creating Custom HTML Helpers</title>
        <link>http://www.asp.net/learn/data-access/tutorial-09-vb.aspx</link>
        <pubDate>Tuesday, 7 Oct 2008</pubDate>
        <description>The goal of this tutorial is to demonstrate how you can create custom HTML Helpers that you can use within your MVC views. By taking advantage of HTML Helpers, you can reduce the amount of tedious typing of HTML tags that you must perform to create a standard HTML page. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/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/data-access/tutorial-09-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET Data Access Tutorials</dc:creator>
        <title>Creating Model Classes with LINQ to SQL</title>
        <link>http://www.asp.net/learn/data-access/tutorial-10-vb.aspx</link>
        <pubDate>Tuesday, 7 Oct 2008</pubDate>
        <description>The goal of this tutorial is to explain one method of creating model classes for an ASP.NET MVC application. In this tutorial, you learn how to build model classes and perform database access by taking advantage of Microsoft LINQ to SQL. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/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/data-access/tutorial-10-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET Data Access Tutorials</dc:creator>
        <title>Using ASP.NET MVC with Different Versions of IIS</title>
        <link>http://www.asp.net/learn/data-access/tutorial-08-vb.aspx</link>
        <pubDate>Tuesday, 19 Aug 2008</pubDate>
        <description>In this tutorial, you learn how to use ASP.NET MVC, and URL Routing, with different versions of Internet Information Services. You learn different strategies for using ASP.NET MVC with IIS 7.0 (classic mode), IIS 6.0, and earlier versions of IIS. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-08-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-08-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET Data Access Tutorials</dc:creator>
        <title>An Introduction to URL Routing</title>
        <link>http://www.asp.net/learn/data-access/tutorial-05-vb.aspx</link>
        <pubDate>Tuesday, 19 Aug 2008</pubDate>
        <description>In this tutorial, Stephen Walther demonstrates how browser requests get mapped to controller actions through URL Routing. You also learn how to create a custom route that displays different blog entries depending on the date passed in a URL. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-05-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-05-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET Data Access Tutorials</dc:creator>
        <title>Preventing JavaScript Injection Attacks</title>
        <link>http://www.asp.net/learn/data-access/tutorial-06-vb.aspx</link>
        <pubDate>Tuesday, 19 Aug 2008</pubDate>
        <description>Prevent JavaScript Injection Attacks and Cross-Site Scripting Attacks from happening to you. In this tutorial, Stephen Walther explains how you can easily defeat these types of attacks by HTML encoding your content. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-06-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-06-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET Data Access Tutorials</dc:creator>
        <title>Creating Unit Tests for ASP.NET MVC Applications</title>
        <link>http://www.asp.net/learn/data-access/tutorial-07-vb.aspx</link>
        <pubDate>Tuesday, 19 Aug 2008</pubDate>
        <description>Learn how to create unit tests for controller actions. In this tutorial, Stephen Walther demonstrates how to test whether a controller action returns a particular view, returns a particular set of data, or returns a different type of action result. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-07-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-07-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET Data Access Tutorials</dc:creator>
        <title>Understanding Views, View Data, and HTML Helpers</title>
        <link>http://www.asp.net/learn/data-access/tutorial-04-vb.aspx</link>
        <pubDate>Tuesday, 19 Aug 2008</pubDate>
        <description>What is an ASP.NET MVC View and how does it differ from a HTML page? In this tutorial, Stephen Walther introduces you to Views and demonstrates how you can take advantage of View Data and HTML Helpers within a View. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-04-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-04-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET Data Access Tutorials</dc:creator>
        <title>Understanding Controllers, Controller Actions, and Action Results</title>
        <link>http://www.asp.net/learn/data-access/tutorial-03-vb.aspx</link>
        <pubDate>Tuesday, 19 Aug 2008</pubDate>
        <description>In this tutorial, Stephen Walther introduces you to ASP.NET MVC controllers. You learn how to create new controllers and return different types of action results. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-03-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-03-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET Data Access Tutorials</dc:creator>
        <title>Understanding Models, Views, and Controllers</title>
        <link>http://www.asp.net/learn/data-access/tutorial-02-vb.aspx</link>
        <pubDate>Tuesday, 19 Aug 2008</pubDate>
        <description>Confused about Models, Views, and Controllers? In this tutorial, Stephen Walther introduces you to the different parts of an ASP.NET MVC application. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-02-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-02-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET Data Access Tutorials</dc:creator>
        <title>Creating a Tasklist Application with ASP.NET MVC</title>
        <link>http://www.asp.net/learn/data-access/tutorial-01-vb.aspx</link>
        <pubDate>Tuesday, 19 Aug 2008</pubDate>
        <description>Stephen Walther builds an entire ASP.NET MVC application from start to finish. This tutorial is a great introduction for people who are new to the ASP.NET MVC Framework and who want to get a sense of the process of building an ASP.NET MVC application. &lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-01-vb.aspx&quot;&gt;View Visual Basic tutorial&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/tutorial-01-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
    <item>
        <dc:creator>ASP.NET Data Access Tutorials</dc:creator>
        <title>Specifying the Master Page Programmatically</title>
        <link>http://www.asp.net/learn/data-access/tutorial-09-vb.aspx</link>
        <pubDate>Monday, 28 Jul 2008</pubDate>
        <description>Looks at setting the content page&amp;#8217;s master page programmatically via the PreInit event handler.&lt;br /&gt;&lt;a href=&quot;http://www.asp.net/learn/data-access/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/data-access/tutorial-09-cs.aspx&quot;&gt;View Visual C# tutorial&lt;/a&gt;</description>
        
    </item>
</channel>
</rss>