GridView Row
I n GridView When I select row the new table should be created for each row in gridview.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
sujay anandPosted Aug 1, 2014, 6:39 AM
Guest UserPosted Aug 1, 2014, 6:23 AM
Algorithm is
create procedure TableCreation
@tableName nvarchar(max)
as
create table @tableName (Col1 int, Col2 int)
return;
Now, at select row you can fire event , e.g., use any DB framework to fire this procedure
grid_selectRow()
{
DB.Execute(TableCreation('abc'+grid.rowNo));
}
sujay anandPosted Aug 1, 2014, 6:13 AM
Guest UserPosted Aug 1, 2014, 5:03 AM