Binding data to specific rows
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I have a gridview with users list. When I double click a row it opens a new tab with a new gridview, fetching data that does belong to that user from another table. Question is, how can I and create a connected database gridview with this selected data? I always done data task my way, using access layers and sprocs and I'd like to start learning connected/binded data operations. Tables are like this:
Users UserRecords
ID RecordId | UserId
The second gridview should be binded to rows from UserRecords with like UserId=1234... I'd appreciate any info on this..