Using ASP.NET 2.0 it is very easy to create a site map of your website. One of the things you can do with a site map is build a bread crumb navigation style, which we will cover in this tutorial.
ASP.NET 2.0 Script CallBack (Ajax like)
Learn about the new ASP.NET 2.0 feature which allows you to do CallBack (similar to PostBack) on a form without reloading the page. This technique similar to Ajax uses the ICallbackEventHandler interface.
Create an RSS feed using ASP.NET 2.0
This tutorial will show you how to create a dynamic XML RSS 2.0 feed using ASP.NET 2.0 (C#). The headlines will be retrieved from a SQL database.
Accessing the controls and methods of a MasterPage
If you are looking to access the method, property or control of an ASP.NET MasterPage from inside a web form you need to do a little trick to get it to work properly. This tutorial explains how you can do this with only a few lines of code, and it also shows you how to create MasterPages that you can use with web forms.
DataGrid inside a DataGrid
This tutorial will teach you how to place and bind a DataGrid inside another DataGrid. The binding of the inner DataGrid will be done depending on the row of the parent DataGrid.
Setting up your ASP.NET server (IIS)
A guide that shows you how to install IIS server and configure it to work with ASP.NET, not just with ASP.
Using server side includes
Demonstrates how to use server side includes in ASP .NET by including User Control files in Web Forms.
Performing custom validation
Demonstrates how to use custom validation on a form by checking to see if a string in a TextBox is not the same with a string from an array (or database), case in which it displays ‘This name is already taken’.
Validate using RequiredFieldValidator
In this tutorial you’ll find out how to validate a TextBox and RadioButtonList control on a webform using RequiredFieldValidator, which will show a warning and stop the submission of the form if a required field has no value.
Connecting to a SQL database from ASP .NET II
This is part II of the tutorial that teaches you how to connect to a SQL database from ASP .NET using SQL Authentication. This part shows you how to connect to the database using ASP .NET code and Visual Studio .NET’s features.