for (int i = 0; i < dt.Rows.Count; i++)
{
function(dt.Rows[i][0].ToString());
}
I tried to loop the selected values from the gridview and put it inside a datatable. Now, my problem is that when I tried the code above to pass the value from datatable to my function. It works, but just once and the loop stops. Can somebody help me please?
The function is for downloading pdf file.
dtset?