Marking a Record as Read AND Opening Up a New Page to Display the Data - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T17:44:39Z http://stackoverflow.com/feeds/question/735546 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/735546/marking-a-record-as-read-and-opening-up-a-new-page-to-display-the-data 0 Marking a Record as Read AND Opening Up a New Page to Display the Data Mike Wills 2009-04-09T19:16:33Z 2009-04-09T19:18:54Z <p>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?</p> http://stackoverflow.com/questions/735546/marking-a-record-as-read-and-opening-up-a-new-page-to-display-the-data/735562#735562 1 Answer by Jason Coyne for Marking a Record as Read AND Opening Up a New Page to Display the Data Jason Coyne 2009-04-09T19:18:54Z 2009-04-09T19:18:54Z <p>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.</p>