Skip to main content
A newer version of this page is available. .

DefaultWebDocumentViewerContainer.EnablePassingExportOptionsPasswordsToClient() Method

Enables passing PDF/Excel passwords specified in the Report Designer to the Web Document Viewer.

Namespace: DevExpress.XtraReports.Web.WebDocumentViewer

Assembly: DevExpress.XtraReports.v19.1.Web.dll

NuGet Package: DevExpress.Web.Reporting.Common

Declaration

public static void EnablePassingExportOptionsPasswordsToClient()

Remarks

For security reasons, PDF/Excel passwords specified in the Report Designer are not exposed in the Web Document Viewer. During the export process, the Document Viewer uses passwords specified in its Export Options tab.

If you fully trust your users and environments, you can enable passing these passwords to the Web Document Viewer. To do this, call the EnablePassingExportOptionsPasswordsToClient method at the application startup.

using DevExpress.XtraReports.Web.WebDocumentViewer;
// ...

protected void Application_Start(object sender, System.EventArgs e) {
    // ...
    DefaultWebDocumentViewerContainer.EnablePassingExportOptionsPasswordsToClient();
}

See General Security Considerations for more information.

See Also