Be aware that if you set a variable before postback and then check it after postback it will be reset, use Session or ViewState to keep variable values regardless of postback state. ViewState is a collection bag which holds key value pairs of changed control attributes. You can also utilize it to store your own […] ↓ Read the rest of this entry…