Table of Contents

Event Navigated

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

Occurs when the WebBrowser control has navigated to a new web page and has begun loading it.

public event EventHandler<WebBrowserEventArgs>? Navigated

Returns

EventHandler<WebBrowserEventArgs>
Occurs when the WebBrowser control has navigated to a new web page and has begun loading it.
Implements

Remarks

This event may not be canceled. Note that if the displayed HTML document has several frames, one such event will be generated per frame.

Handle the Navigated event to receive notification when the WebBrowser control has navigated to a new web page.

When the Navigated event occurs, the new web page has begun loading, which means you can access the loaded content through the WebBrowser properties and methods.

Handle the Loaded event to receive notification when the WebBrowser control finishes loading the new document.

You can also receive notification before navigation begins by handling the Navigating event. Handling this event lets you cancel navigation if certain conditions have not been met. For example, the user has not completely filled out a form.