I created a class like this:
private class TestResults
{
public bool IsAdmitted { get; set; }
public bool IsDuplicate { get; set; }
public bool IsVerified { get; set; }
}
The values ββof this class are set during postback by clicking on the list of radio objects. The problem, however, I do not know how to store these values ββin multiple postbacks. I was thinking about using viewstate, but I'm not quite sure how to do this with this class.
Perhaps I am missing some important thing here.
Hope someone can point me in the right direction
thank you for your time! Regards, Mark
source
share