Server Intellect
 
Home   Asp.Net Tutorials   What's New   Newsletter   More Resources
Tutorial RSS
 
  Categories
Advanced Technologies
AJAX
Internet Browsers
Charts
Controls
Database
Email
Error Handling
File
Graphics
Website Navigation
Network
Performance
User Interface and Themes
Validation
Visual Web Developer
Web Services
XML
Suggest Tutorial


Navigator: Home - Tutorials - Database
Database Access in ASP.NET


ASP.NET Database Tutorials
Installation overview of SQL Server 2008

In this tutorial we will discuss an overview of SQL Server servicing installation. It is possible to upgrade any installed SQL Server 2008 component with a SQL Server 2008 servicing update. In this case, if the version of the component is later than the version update available then the Setup program will not update it.

Using Two ASP.NET Membership Providers to CreateUser VB
This tutorial shows you how to use the CreateUserWizard control with two SQL Membership Providers in an ASP.NET Web Application, and how to programmatically switch between the two. VB.NET.
Using Two ASP.NET Membership Providers to CreateUser C#
This tutorial shows you how to use the CreateUserWizard control with two SQL Membership Providers in an ASP.NET Web Application, and how to programmatically switch between the two. C#.
Using LINQ to SQL in place of SQL Statements in VB.NET
This tutorial will show you how to use LINQ to SQL in ASP.NET 3.5 to manipulate database data without using SQL Statements. VB version.
Using LINQ to SQL in place of SQL Statements in C#
This tutorial will show you how to use LINQ to SQL in ASP.NET 3.5 to manipulate database data without using SQL Statements. C# version.
Building DAC with Execution Time in ASP.NET 3.5 and VB
This tutorial will show you how to build your own Data Access Component and how to retrieve the time taken to execute. VB version.
Building DAC with Execution Time in ASP.NET 3.5 and C#
This tutorial will show you how to build your own Data Access Component and how to retrieve the time taken to execute. C# version.
Saving and Retrieving an Image from SQL database in C#
This tutorial will show you how to both save an image, and also retrieve the image from a SQL database. C# version.
Adding to Database using LINQ and AJAX in ASP.NET VB
This tutorial will show how we can use Microsoft's new LINQ to add new records to a database, and how we can implement AJAX to make the application more dynamic and easier to use. The example was created with Visual Studio .NET 2008 - VB version.
Adding to Database using LINQ and AJAX in ASP.NET C#
This tutorial will show how we can use Microsoft's new LINQ to add new records to a database, and how we can implement AJAX to make the application more dynamic and easier to use. The example was created with Visual Studio .NET 2008 - C# version.
Using LINQ to Display Data in ASP.NET Web Application
This tutorial will give you an introduction to using Microsoft's new LINQ to display data from a database using a DataGrid Control. This example is done using VS 2008, but LINQ can be used in 2005 by downloading the Preview from Microsoft.
DataView DataTable sorting and filtering in VB and .NET
This tutorial will show how we can use the GridView control to display data from a database, and also how we can filter the data as well as sort it. VB version.
DataView DataTable sorting and filtering in C# and .NET
This tutorial will show how we can use the GridView control to display data from a database, and also how we can filter the data as well as sort it. 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.
Using Stored Procedure to Add to Database- ASP.NET & VB
This tutorial will show how we can use Stored Procedures instead of explicit SQL statements to add data from a form to a database. VB version.
Using Stored Procedure to Add to Database- ASP.NET & C#
This tutorial will show how we can use Stored Procedures instead of explicit SQL statements to add data from a form to a database. 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 a 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 a 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.
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.
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.
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.
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.
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.
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#.
A sample of operating XML data in ASP.NET 2.0(VB.NET)
Microsoft .NET introduces a new suite of XML APIs built on industry standards such as DOM, XPath, XSD, and XSLT. The .NET Framework XML classes also offer convenience, better performance, and a more familiar programming model, tightly coupled with the new .NET data access APIs—ADO .NET. XmlWriter, XmlReader, and XmlNavigator classes and classes that derive from them, including XMLTextReader and XMLTextWriter, encapsulate a number of functionalities that previously had to be accomplished manually. This tutorial will show you a sample of how to operate XML in ASP.NET and VB.NET.
A sample of operating XML data in ASP.NET 2.0(C#)
Microsoft .NET introduces a new suite of XML APIs built on industry standards such as DOM, XPath, XSD, and XSLT. The .NET Framework XML classes also offer convenience, better performance, and a more familiar programming model, tightly coupled with the new .NET data access APIs—ADO .NET. XmlWriter, XmlReader, and XmlNavigator classes and classes that derive from them, including XMLTextReader and XMLTextWriter, encapsulate a number of functionalities that previously had to be accomplished manually. This tutorial will show you a sample of how to operate XML in ASP.NET and C#.
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.
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.
Using Stored Procs with ASP.NET 2.0 GridView and VB.NET
This tutorial will show you how to display data using the .NET GridView Control, stored procedures, ASP.NET 2.0 and VB.NET
Using Stored Procs with ASP.NET 2.0 GridView and C#
This tutorial will show you how to display data using the .NET GridView Control, stored procedures, ASP.NET 2.0 and C#.NET
Displaying Data using ASP.NET 2.0 CheckBoxList and VB
This tutorial will show you how to display data using the .NET CheckBoxList Control, ASP.NET 2.0 and VB.NET
Displaying Data using ASP.NET 2.0 CheckBoxList and C#
This tutorial will show you how to display data using the .NET CheckBoxList Control, ASP.NET 2.0 and C#.NET
Displaying XML Data using ASP.NET 2.0 and VB .NET
This tutorial will show you how to display XML Data using the XMLDataSource control, ASP.NET 2.0, and VB.NET
Displaying XML Data using ASP.NET 2.0 and C# .NET
This tutorial will show you how to display XML Data using the XMLDataSource control, ASP.NET 2.0, and C#.NET
Displaying Data using ASP.NET 2.0 DataList and VB.NET
This tutorial will show you how to display data using the .NET DataList Control, ASP.NET 2.0 and VB.NET
Displaying Data using ASP.NET 2.0 DataList and C#
This tutorial will show you how to display data using the .NET DataList Control, ASP.NET 2.0 and C#.NET
Displaying Data using ASP.NET 2.0 GridView and VB.NET
This tutorial will show you how to display data using the .NET GridView Control, ASP.NET 2.0 and VB.NET
Displaying Data using ASP.NET 2.0 GridView and C#
This tutorial will show you how to display data using the .NET GridView Control, ASP.NET 2.0 and C#.NET
Displaying Data using ASP.NET 2.0 Repeater and VB.NET
This tutorial will show you how to display data using ASP.NET 2.0, a repeater control and VB.NET
Displaying Data using ASP.NET 2.0 Repeater and C#
This tutorial will show you how to display data using the .NET Repeater Control, ASP.NET 2.0 and C#.NET



 
  Developer Resources







Server Intellect Rocks