Didn't find the tutorial you were looking for or have a suggestion for a tutorial? We are always welcome to suggestions for new articles. Suggest a Tutorial
Editing and Deleting using the ListView in ASP.NET 3.5
This tutorial will show you how to use the ListView Control to display, edit and delete database records without using any code-behind.
|
Using the ListView Control to Add Data in ASP.NET 3.5
This tutorial will show you how to use the ListView control to insert new records to a SQL database.
|
Using the DataPager with the ListView in ASP.NET 3.5
This tutorial will show you how to use two of the new controls in ASP.NET 3.5, the DataPager and the ListView. We will use the DataPager to navigate through pages of data from a SQL database, with no code-behind.
|
Sorting Data with the ListView Control in ASP.NET 3.5
This tutorial will show you how to display data with the new ListView Control and also how to create headers that will sort the data like in a GridView.
|
LINQ Deleting from Database using ASP.NET 3.5 and VB
This tutorial shows how we can use LINQ to bypass SQL statements to delete data from our SQL Database. VB version.
|
Creating LINQ to SQL Entities in C# and ASP.NET 3.5
This tutorial will show you how to create LINQ to SQL Entities by hand, instead of using the Object Relational Designer in Visual Studio. C# version.
|
LINQ Deleting from Database using ASP.NET 3.5 and C#
This tutorial shows how we can use LINQ to bypass SQL statements to delete data from our SQL Database. C# version.
|
Using LINQ to Update SQL Database in ASP.NET 3.5
This tutorial will show how we can use LINQ to update records in a database, using a GridView Control. This examples was written in Visual Studio .NET 2008
|
Using LINQ to Display and Filter XML Data in VB
This tutorial shows an alternative to using a database - using LINQ to retrieve data from an XML file and also how to filter data from XML. C# version.
|
Using LINQ to Display and Filter XML Data in C#
This tutorial shows an alternative to using a database - using LINQ to retrieve data from an XML file and also how to filter data from XML. C# version.
|
Using Stored Procedures to Add to Database in C#
This tutorial will show us how we can use Stored Procedures instead of explicit SQL Statements to add data to our database. C# version.
|
Using Stored Procedures to Add to Database in VB
This tutorial will show us how we can use Stored Procedures instead of explicit SQL Statements to add data to our database. VB version.
|
Displaying Database with LINQ and DataGrid ASP.NET 3.5
This tutorial will show how we can simply display the records of a database in a DataGrid Control with Microsoft's new technology, LINQ. This example was created in Visual Studio .NET 2008.
|
Add to Database using LINQ and AJAX in ASP.NET 3.5 C#
This tutorial will show how we can use Microsoft's new technology, LINQ, to easily add data to a database and how we can use AJAX to update the database in a more seamless way. This example was created in Visual Studio .NET 2008 and C#
|
Add to Database using LINQ and AJAX in ASP.NET 3.5 VB
This tutorial will show how we can use Microsoft's new technology, LINQ, to easily add data to a database and how we can use AJAX to update the database in a more seamless way. This example was created in Visual Studio .NET 2008 and VB.NET
|
Exporting a DataGrid to Excel in ASP.NET and VB
This tutorial will show how we can export the data displayed in a DataGrid into an Excel worksheet at the touch of a button. VB version.
|
Exporting a DataGrid to Excel in ASP.NET and C#
This tutorial will show how we can export the data displayed in a DataGrid into an Excel worksheet at the touch of a button. C# version.
|
Implementing a Pager with the Repeater Control in VB
This tutorial will show how we can add a pager to a repeater control, and use a querystring value to move between the pages. This method is much more SEO-friendly than using postback, like the built-in GridView pager. VB version.
|
Implementing a Pager with the Repeater Control in C#
This tutorial will show how we can add a pager to a repeater control, and use a querystring value to move between the pages. This method is much more SEO-friendly than using postback, like the built-in GridView pager. C# version.
|
Introduction to the GridView Control in Visual Studio
This tutorial introduces you to ASP.NET's GridView control, showing how easy it is now to display data from a database.
|
Using Nested Repeaters to Display Hierarchical Data C#
This tutorial will show how we can create a relational hierarchical structure using nested repeaters. This is useful for such an implementation as a structured menu system with different levels (categories and sub-categories). C# version.
|
Using Nested Repeaters to Display Hierarchical Data VB
This tutorial will show how we can create a relational hierarchical structure using nested repeaters. This is useful for such an implementation as a structured menu system with different levels (categories and sub-categories). VB version.
|
Using DataView and DataTable to filter and sort VB
In this tutorial, we will create three GridViews and use DataView and DataTable to manipulate one DataSource to filter and sort the data into the GridViews. VB version.
|
Using DataView and DataTable to filter and sort C#
In this tutorial, we will create three GridViews and use DataView and DataTable to manipulate one DataSource to filter and sort the data into the GridViews. C# version.
|
Add/Edit/Delete Access DB, using ADO.NET + DataGrid VB
Learn how to display data from an Access Database using ADO.NET and a DataGrid, and also learn how we can use the DataGrid to add new data and edit & delete existing data. VB version.
|
Add/Edit/Delete Access DB, using ADO.NET + DataGrid C#
Learn how to display data from an Access Database using ADO.NET and a DataGrid, and also learn how we can use the DataGrid to add new data and edit & delete existing data. C# version.
|
Searching Database with String using ASP.NET and VB
This tutorial shows how simple it is to allow users to search a database for matching text they input themselves. VB version.
|
Searching Database with String using ASP.NET and C#
This tutorial shows how simple it is to allow users to search a database for matching text they input themselves. C# version.
|
Populate DropDown List from Database in ASP.NET & VB
This tutorial shows how we can dynamically populate a dropdown menu from data pulled from a database. VB version.
|
Populate DropDown List from Database in ASP.NET & C#
This tutorial shows how we can dynamically populate a dropdown menu from data pulled from a database. C# version.
|
Displaying Newest Entries From a Database- ASP.NET & VB
This tutorial will show how to display the latest entries to a database, using a Repeater Control. VB version.
|
Displaying Newest Entries From a Database- ASP.NET & C#
This tutorial will show how to display the latest entries to a database, using a Repeater Control. C# version.
|
Uploading Files to SQL Database in ASP.NET and VB
This tutorial will show how we can upload files to a SQL database using ASP.NET and VB.
|
Uploading Files to SQL Database in ASP.NET and C#
This tutorial will show how we can upload files to a SQL database using ASP.NET and C#.
|
Using FormView control to edit/delete in ASP.NET & VB
This tutorial shows how we can use the FormView control to display data from a SQL database, and also allow adding, updating and deletion of this data. VB version.
|
Using FormView control to edit/delete in ASP.NET & C#
This tutorial shows how we can use the FormView control to display data from a SQL database, and also allow adding, updating and deletion of this data.
|
Basic Data Access with SQL Database & ASP.NET 2.0
This tutorial will show how we can use a GridView control to display and update data in a SQL database.
|
Connect to SQL Server using a SqlDataSource Control C#
This tutorial will show you how to connect to SQL Server using C# and a SqlDataSource Control.
|
Connect to SQL Server using a SqlDataSource VB.NET
This tutorial will show you how to connect to SQL Server using VB and a SqlDataSource Control.
|
Making SQL transaction in DB using ASP.NET 2.0 and VB
In this tutorial, we will show you how to make a Transact-SQL transaction in a SQL Server database. We will use ASP.NET 2.0 and VB.NET in the sample.
|
Hash table using ASP.NET 2.0 and C#
This example illustrates how to create and use a hash table. Each element of hash table is a key/value pair stored in a DictionaryEntry object. A key cannot be a null reference (Nothing in Visual Basic), but a value can be.
|
Save image to database in ASP.NET 2.0(C#)
This tutorial will show you how to save image to a SQL database using ASP.NET and C#.
|
Save image to database in ASP.NET 2.0(VB)
This tutorial will show you how to save image to a SQL database using ASP.NET and VB.NET.
|
Making SQL transaction in DB using ASP.NET 2.0 and C#
In this tutorial, we will show you how to make a Transact-SQL transaction in a SQL Server database. We will use ASP.NET 2.0 and C# in the sample.
|
Hash table using ASP.NET 2.0 and VB
This example illustrates how to create and use a hash table. Each element of hash table is a key/value pair stored in a DictionaryEntry object. A key cannot be a null reference (Nothing in Visual Basic), but a value can be.
|
Display Data using Gridview in C#
This tutorial will show you how to display data using the .NET GridView Control, ASP.NET 2.0 and C#.NET
|
Display Data using Gridview in VB.NET
This tutorial will show you how to display data using the .NET GridView Control, ASP.NET 2.0 and VB.NET
|
How to display data using the .NET GridView Control C#
This tutorial will show you how to display data using the .NET GridView Control, stored procedures, ASP.NET 2.0 and C#.NET
|
How to display data using the .NET GridView Control VB
This tutorial will show you how to display data using the .NET GridView Control, stored procedures, ASP.NET 2.0 and VB.NET
|
How to connect to SQL Server using C#
This tutorial will show you how to connect to SQL Server using C# and a SqlDataSource Control.
|
How to connect to SQL Server using VB.
This tutorial will show you how to connect to SQL Server using VB and a SqlDataSource Control.
|
A sample of operating XML data in ASP.NET 2.0(C#)
A sample of operating XML data in ASP.NET 2.0(C#)
|
Constructing the all important connection string
Constructing the all important connection string
|
A sample of operating XML data in ASP.NET 2.0(VB.NET)
A sample of operating XML data in ASP.NET 2.0(VB.NET)
|
Retrieve data from SQL Server 2005
Retrieve data from SQL Server 2005
|
Display Data using .Net CheckBoxList Control
This tutorial will show you how to display data using the .NET CheckBoxList Control, ASP.NET 2.0 and VB.NET
|
Display Data using .NET CheckBoxList C#
This tutorial will show you how to display data using the .NET CheckBoxList Control, ASP.NET 2.0 and C#.NET
|
Display xml data using XMLDataSource and VB
This tutorial will show you how to display XML Data using the XMLDataSource control, ASP.NET 2.0, and VB.NET
|
Display XML Data using XMLDataSource and C#
This tutorial will show you how to display XML Data using the XMLDataSource control, ASP.NET 2.0, and C#.NET
|
How to display data using a Repeater control and VB.NET
This tutorial will show you how to display data using ASP.NET 2.0, a repeater control and VB.NET
|
How to display data using the Repeater control and C#
This tutorial will show you how to display data using the .NET Repeater Control, ASP.NET 2.0 and C#.NET
|