Skip to main content
Tab

UploadControlGoogleDriveSettings Class

Contains settings that allow you to connect the Upload Control to Google Drive.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public class UploadControlGoogleDriveSettings :
    UploadControlUploadStorageSettingsBase

The following members return UploadControlGoogleDriveSettings objects:

Library Related API Members
ASP.NET Web Forms Controls ASPxUploadControl.GoogleDriveSettings
ASP.NET MVC Extensions UploadControlBinderSettings.GoogleDriveSettings
UploadControlSettings.GoogleDriveSettings

Remarks

Follow the steps below to connect the Upload Control to Google Drive:

  1. Call the RegisterGoogleDrive method in the Global.asax file.
  2. Set the Upload Control’s UploadStorage property to GoogleDrive.
  3. Assign a Google Drive account’s name to the GoogleDriveSettings.AccountName property.

The following example demonstrates how to connect the Upload Control to Google Drive:

void Application_Start(object sender, EventArgs e) {
   DevExpress.Web.AccountManager.RegisterGoogleDrive("YourGoogleDriveAccount", "YourEmail", "YourPrivateKey");
}
<dx:ASPxUploadControl ID="UploadControl" runat="server" UploadStorage="GoogleDrive" ShowUploadButton="True" >
    <GoogleDriveSettings AccountName="YourGoogleDriveAccount" />
</dx:ASPxUploadControl>

Once the Upload Control uploads a file to cloud storage, you can use the key name of this file to access it. To obtain a file key name, use the FileNameInStorage property of an UploadedFile object.

See Also