vote up 0 vote down star

I have a DataGrid that I use to display an "inbox" of information. I would like the have the person click on a link which would mark the record as read and have the information display in a new window. I am relatively new to C#. What would be a good approach to accomplishing this?

flag

1 Answer

vote up 1 vote down check

On the onclick event of the datagrid, retrieve the row selected, Grab the DataBoundItem and cast it back to your datatype. Update the Read property, and then pass that instance to a new form for display.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.