views:

20

answers:

1

Hi, i wont to code somethink like this: i have a ListView with some labels (this labels can be increment[+1] and decrement[-1]) by the user via buttons. now i have the problem, that each of this list items have a details view at which the user can look at. but when he return to the overwiev page, all labels ar set back to the default 0.

how can i solve this problem, so that the user returns from the details view to the overview, that he see all the changed label values.

+1  A: 

If your question is how to persist values across postbacks then you can use either ViewState or Session to store your data in. It's hard to be more specific without a code example of what you are doing.

Dan Diplo