Saves any changes to an System.Web.UI.WebControls.ImageMap control's view-state that have occurred since the time the page was posted back to the server.
Returns the System.Web.UI.WebControls.ImageMap control's current view state. If there is no view state associated with the control, this method returns null.
This method is used primarily by control developers.
View state is the accumulation of the values of a server control's properties. These values are automatically placed in the server control's System.Web.UI.Control.ViewState property, which is an instance of the System.Web.UI.StateBag class. This property's value is then persisted to a string object after the save state stage of the server control life cycle. For more information, see ASP.NET State Management Overview.
When view state is saved, this string object is returned to the client as a variable that is stored in an Hidden HTML element. When you author custom server controls, you can improve efficiency by overriding this method and modifying your server control's ViewState property. For more information, see ASP.NET State Management Overview.