aspnet-devexpress-dot-web-60922e4a.md
Contains settings that allow you to connect the Upload Control to Google Drive.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public class UploadControlGoogleDriveSettings :
UploadControlUploadStorageSettingsBase
Public Class UploadControlGoogleDriveSettings
Inherits 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 |
Follow the steps below to connect the Upload Control to Google Drive:
GoogleDrive.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.
Object StateManager PropertiesBase UploadControlUploadStorageSettingsBase UploadControlGoogleDriveSettings UploadControlGoogleDrivePersonalSettings
See Also
Cloud Storage Account Management