3
votes
hidden field is null on !IsPostBack and not null on IsPostBack
You could define a property in your page class and then modify the property value in your code:
protected string HiddenFieldValue { get; set; }
protected void Page_Load(obj …
