Learn how to delete multiple database records in a single operation. In the User Interface Layer we build upon an enhanced GridView created in an earlier tutorial. In the Data Access Layer we wrap the multiple Delete operations within a transaction. Author: Scott Mitchell Code: ASP.NET v2.0 & VB
Deleting records using ADO.NET with ASP.NET is a fairly strait-forward process. This tutorial will show you just how easy it is. This tutorial includes full Visual Studio.NET Project files in VB.NET. Author: easerve.com Code: ASP.NET v1.1 & VB
Following example displays us how to send a query using an SQLCommand. We execute a simple Transact-SQL DELETE statement to show all rows from database. I have used Nowthwind sample database for this sample. Author: Dotnetindex.com Code: ASP.NET v1.0 & VB
Introductory tutorial and code snippet on how to simply delete records in a Microsoft Access database with ASP.NET. Author: Michael Wall Code: ASP.NET v2.0 & VB
Deleting records from database is a function almost all database applications need to support. This function can be pretty tricky sometimes, especially for referenced records. Author: Tin Lam Code: ASP.NET v1.0
This tutorial will show how we can switch from using a SqlDataSource to using a LinqDataSource to delete records from a database. We will be using a GridView to display the data and then a LinqDataSource and LINQ to SQL Classes. Author: LinQhelp.com Code: ASP.NET v3.5 & VB