Hi friend, I am going crazy !!!!
In my MasterPage, I have a HiddenField that is placed just below the <form> tag, its not in any ContentPlaceHolder, I set its value from the Page_Init() method.
I also added a property for it inside my MasterPage as:
public string getField
{
get {return this.hField.Value;}
set {this.hField.Value = value;}
}
I am unable to get/set the HiddenField
Can you help please?