vote up 0 vote down star

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?

flag

62% accept rate
1  
What are you wanting to do with the timestamps?? – Mitchel Sellers Oct 12 at 15:13
1  
I'm using them for optimistic concurrency, so I need to put them back into the DTO objects, so they can validate the data update. – ilivewithian Oct 12 at 15:15
Ok, so you ruled out hidden field and session. How about viewstate? – KristoferA Oct 12 at 15:15

1 Answer

vote up 0 vote down

It depends on whether you're talking lists of DTOs, or a single DTO.

For single DTOs, I'd put the timestamp and the ID into the viewstate.

For lists, I'd put hidden fields inside whatever list mechanic you prefer (gridview / repeater / manually building tables (yuk!)).

link|flag
It's a list of entities at the moment, I guess yucky is the way to go. – ilivewithian Oct 12 at 15:23
The yuk was in regards to manually building tables. I'm upgrading a project that does that extensively. I want to gouge my eyeballs out :p – JustLoren Oct 12 at 15:40

Your Answer

Get an OpenID
or

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