forked from syncfusion/ej2-aspnetcore-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAzure.cshtml
41 lines (34 loc) · 2.05 KB
/
Azure.cshtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
@using Syncfusion.EJ2
@section ControlsSection{
<div class=" control-section">
<div class="sample-container">
<!-- File Manager sample with azure service -->
<ejs-filemanager id="filemanager">
<e-filemanager-ajaxsettings url="https://ej2services.syncfusion.com/production/web-services/api/AzureFileManager/AzureFileoperations"
downloadUrl="https://ej2services.syncfusion.com/production/web-services/api/AzureFileManager/AzureDownload"
uploadUrl="https://ej2services.syncfusion.com/production/web-services/api/AzureFileManager/AzureUpload"
getImageUrl="https://ej2services.syncfusion.com/production/web-services/api/AzureFileManager/AzureGetImage">
</e-filemanager-ajaxsettings>
</ejs-filemanager>
</div>
</div>
}
@section ActionDescription{
<div id="action-description">
<p>This sample demonstrates how to utilize the Azure blob storage with File Manager component. To run the service, create the Azure blob storage account and register the Azure storage details like account name, password, and blob name details within the Register Azure method.</p>
</div>
}
@section Description{
<div id="description">
<p>
The <b>File Manager</b> component is used to explore a file system through a web application, similar to the windows explorer for windows. It supports all the basic file operations such as create, rename, delete, refresh and so on.
</p>
<p>
<b>Note: </b>File Manager's upload functionality is restricted in the online demo. If you need to test upload functionality, please install
<a target="_blank" href="https://www.syncfusion.com/downloads">Syncfusion Essential Studio </a>on your machine and run the demo.
</p>
</div>
}
@section Meta{
<meta content="This example demonstrates how to configure and use the azure service in a ASP.NET Core File Manager." />
}