System.Web.UI.HtmlControls Namespace HtmlInputHidden Class
Occurs when the Value property of the HtmlInputHidden control is changed on the server.
[ VB ]
Public Event ServerChange As EventHandler
[ C# ]
public event EventHandler ServerChange;
[ C++ ]
public: __event EventHandler* ServerChange;
In [ JScript ], you can handle the events defined by a class, but you cannot define your own.
The event handler receives an EventArgs containing data related to the ServerChange event.
The ServerChange event is raised when the Value property of the HtmlInputcontrol is changed between posts to the server.
NOTE: The control must have viewstate enabled for the ServerChange event to work correctly.
For more information about handling events, see Web Forms Events Model.
HtmlInputHidden Members