User-369506445 posted
Hi
Here you are binding a string to a hidden control
You have to chane
string hdf_EntryNo = (row.FindControl("hdfEntryNo") as HiddenField).Value ;
Or
HiddenField hdf_EntryNo = (row.FindControl("hdfEntryNo") as HiddenField);
var text=hdf_EntryNo.Value;