i am retrieving data into gridview.
now i want to update specific column in gridview from textbox value where checkbox is marked.
i want to update orderno value column in gridview again all rows where checked is marked from textbox value
CREATE TABLE #ItemMasterFile(CodeItem INT,Descriptionitem VARCHAR(50),SecID INT,weight int);
CREATE TABLE #Probale(BID INT,CodeItem INT,prdQTY INT,Orderno int,weight int,Entrydate DATETIME,DelID int);
INSERT INTO #ItemMasterFile VALUES
(1,'A',1,100)
, (2,'B',2,100)
, (3,'C',3,100)
, (4,'D',4,100)
, (5,'e',5,100)
, (6,'f',6,100)
, (7,'g',4,100)
, (8,'h',4,100)
, (9,'K',2,100)
, (10,'L',4,100)
, (11,'M',2,100);
INSERT INTO #Probale VALUES
(1,1,1,001,100,'01-05-2019',null),
(1,1,1,001,100,'01-06-2019',null),
(2,3,1,001,200,'02-07-2019',null),
(3,11,1,002,200,'03-08-2019',null),
(4,10,1,002,200,'08-08-2019',null),
(4,1,1,003,200,'08-08-2019',null),
(4,1,1,003,200,'08-08-2019',null);