Transaction In Asp.net
Transaction In Asp.net As we seen earlier Transaction in Sql Server.Means If we are Dealing with two or table at same time for insertion and updation of data,if there is any problem in any executable statement then whole transaction is get rollback to its initial value. Here i am using some Text-box For talking Input.If there is all condition come true the n data will insert in to its Tables,otherwise it thrown an Exception. Design Database tables. Create table in your Database.. CREATE TABLE [dbo] . [GridView] ( [id] [int] IDENTITY ( 1 , 1 ) NOT NULL, [name] [varchar] ( 50 ) NULL, [age] [int] NULL, [salary] [decimal] ( 18 , 0 ) NULL, [country] [varchar] ( 50 ) NULL, [city] [varc...