WebBrowser.ShowSaveAsDialog Method

Definition

Opens the Internet Explorer Save Web Page dialog box or the Save dialog box of the hosted document if it is not an HTML page.

C#
public void ShowSaveAsDialog();

Examples

The following code example demonstrates how to use the ShowSaveAsDialog method to implement a Save As menu option that is similar to the one on the Internet Explorer File menu. This example requires that your form contains a menu with a menu item called MenuItemFileSaveAs and a WebBrowser control called webBrowser1.

C#
// Displays the Save dialog box.
private void saveAsToolStripMenuItem_Click(object sender, EventArgs e)
{
    webBrowser1.ShowSaveAsDialog();
}

Remarks

You can use this method to implement a Save As menu item similar to the one on the Internet Explorer File menu. The dialog box that appears when this method is called depends on the document type currently loaded.

Anteckning

This method allows users to save only the contents of the document as it was originally loaded. Any modifications made to the document at run time through the Document property are not persisted. For information on retrieving the run-time modifications, see How to: Access the HTML Source in the Managed HTML Document Object Model.

Applies to

Produkt Versioner
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also