I have a WebForms project where we are using Linq to SQL (L2S) to provide data access. I know L2S can handle timestamps, but what I'm wondering is, what is the best way to handle timestamps at the client side.
I'm thinking that one possibility is to simply put the timestamp into a hidden field when an entity is rendered, but this feels a bit hacky, another option would be to put the timestamp / whole object into a session variable, but again this doesn't feel very clean.
What alternatives are there?