find a specific record in a GridView

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

How can I find a specific record in a GridView via C#? The record ID
will be passed by a Session Variable. Any Help?

Thanks!
 
How can I find a specific record in a GridView via C#?  The record ID
will be passed by a Session Variable.  Any Help?

Thanks!

It's not very clear what you supposed to do with that record but you
can use

foreach (GridViewRow row in GridView.Rows)
{
....
}
 
How can I find a specific record in a GridView via C#?  The record ID
will be passed by a Session Variable.  Any Help?

Thanks!

It's not very clear what you supposed to do with that record but you
can use

foreach (GridViewRow row in GridView.Rows)
{
....
}
 
Back
Top