ScriptManager.Navigate Event

Definition

Occurs when the user clicks the browser's Back or Forward button.

public:
 event EventHandler<System::Web::UI::HistoryEventArgs ^> ^ Navigate;
public event EventHandler<System.Web.UI.HistoryEventArgs> Navigate;
member this.Navigate : EventHandler<System.Web.UI.HistoryEventArgs> 
Public Custom Event Navigate As EventHandler(Of HistoryEventArgs) 

Event Type

Remarks

When a user clicks the browser's Back button, the browser navigates through previously-viewed URLs, which can include URLs that contain history-point state data. If client code in the Web page detects that the URL contains history state data, it makes a request to the server page. This acts as a postback event, and the ScriptManagerProxy server control raises the Navigate event. You can handle this event and re-create the page as required in the Web application by using the state data that is passed with the event.

Applies to