I am creating a webform where I want to display SQL Database records in textboxes using first, last, next and previous buttons. I have 2 problems.
1) I am using hidden field control to display next records but I get an error i.e. Input string not in correct format on this coding i = Int32.Parse(HiddenField1.Value) + 1;
I have used Convert.ToInt32(HiddenField1.Value) + 1 but I get the the same error.
2) my coding for previous button click shows no result
I am pasting my coding for reference:
protected
voidGo to the complete details ...