Marking a Record as Read AND Opening Up a New Page to Display the Data - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T17:44:39Zhttp://stackoverflow.com/feeds/question/735546http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/735546/marking-a-record-as-read-and-opening-up-a-new-page-to-display-the-data0Marking a Record as Read AND Opening Up a New Page to Display the DataMike Wills2009-04-09T19:16:33Z2009-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#7355621Answer by Jason Coyne for Marking a Record as Read AND Opening Up a New Page to Display the DataJason Coyne2009-04-09T19:18:54Z2009-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>