Click here to Skip to main content
16,019,140 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi friends
i all
i have 5 text box in my form
id(int)
code(int)
sender(string)
receiver(string)
body(string)
(All these textboxes are comming from Databases...)
how To show next record i am using Next Button,
and how To Show previous record I am using Previous Button?
Posted

1 solution

If your "ID" Column is not Indentity column then add a column in the table which is Identity and incremented by "1"

Then when you click on Next Button retrieve the value by giving 'Identity" column value+1
and when you click on Previous retrieve the value by giving 'Identity" column value-1
 
Share this answer
 
v4
Comments
pratham2587 1-Jun-12 0:55am    
thanks for help .sudip its done

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900