Posts

Showing posts with the label ASP.NET

Select, Insert, Delete, and Update using Stored Procedure in ASP.NET

Image
Select, Insert, Delete, and Update using Stored Procedure in ASP.NET Introduction   Here, we will see how to create select, insert, update, delete statements using stored procedures in SQL Server And ASP .NET .First of all we create a table. CREATE TABLE demo(     id      int      IDENTITY (1,1)      NOT NULL      PRIMARY KEY,     name      nvarchar (50)      NULL,     city      nvarchar( 50)      NULL )                                                             OR Here I inserted few records in the demo table . ...