You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-upload-process-images.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,10 +15,10 @@ ms.reviewer: dineshm
15
15
16
16
This tutorial is part one of a series. In this tutorial, you will learn how to deploy a web app that uses the Azure Blob storage client library to upload images to a storage account. When you're finished, you'll have a web app that stores and displays images from Azure storage.
17
17
18
-
# [\.NET v12 SDK](#tab/dotnet)
18
+
# [\.NET v12](#tab/dotnet)
19
19

20
20
21
-
# [Node.js v10 SDK](#tab/nodejsv10)
21
+
# [Node.js v10](#tab/nodejsv10)
22
22

## Deploy the sample app from the GitHub repository
119
119
120
-
# [\.NET v12 SDK](#tab/dotnet)
120
+
# [\.NET v12](#tab/dotnet)
121
121
122
122
App Service supports several ways to deploy content to a web app. In this tutorial, you deploy the web app from a [public GitHub sample repository](https://github.com/Azure-Samples/storage-blob-upload-from-webapp). Configure GitHub deployment to the web app with the [az webapp deployment source config](/cli/azure/webapp/deployment/source) command.
App Service supports several ways to deploy content to a web app. In this tutorial, you deploy the web app from a [public GitHub sample repository](https://github.com/Azure-Samples/storage-blob-upload-from-webapp-node-v10). Configure GitHub deployment to the web app with the [az webapp deployment source config](/cli/azure/webapp/deployment/source) command.
The sample web app uses the [Azure Storage APIs for .NET](/dotnet/api/overview/azure/storage) to upload images. Storage account credentials are set in the app settings for the web app. Add app settings to the deployed app with the [az webapp config appsettings set](/cli/azure/webapp/config/appsettings) command.
148
148
@@ -154,7 +154,7 @@ az webapp config appsettings set --name $webapp --resource-group myResourceGroup
The sample web app uses the [Azure Storage Client Library](https://github.com/Azure/azure-storage-js) to request access tokens, which are used to upload images. The storage account credentials used by the Storage SDK are set in the app settings for the web app. Add app settings to the deployed app with the [az webapp config appsettings set](/cli/azure/webapp/config/appsettings) command.
160
160
@@ -172,7 +172,7 @@ After you deploy and configure the web app, you can test the image upload functi
172
172
173
173
To test the web app, browse to the URL of your published app. The default URL of the web app is `https://<web_app>.azurewebsites.net`.
174
174
175
-
# [\.NET v12 SDK](#tab/dotnet)
175
+
# [\.NET v12](#tab/dotnet)
176
176
177
177
Select the **Upload photos** region to specify and upload a file, or drag a file onto the region. The image disappears if successfully uploaded. The **Generated Thumbnails** section will remain empty until we test it later in this topic.
178
178
@@ -214,7 +214,7 @@ The following classes and methods are used in the preceding task:
Select **Choose File** to select a file, then click **Upload Image**. The **Generated Thumbnails** section will remain empty until we test it later in this topic.
220
220
@@ -300,7 +300,7 @@ Sign in to the [Azure portal](https://portal.azure.com). From the left menu, sel
300
300
301
301
Verify the image is shown in the container.
302
302
303
-

303
+

304
304
305
305
## Test thumbnail viewing
306
306
@@ -312,10 +312,10 @@ Choose a file with the file picker and select **Upload**.
312
312
313
313
Navigate back to your app to verify that the image uploaded to the **thumbnails** container is visible.
314
314
315
-
# [\.NET v12 SDK](#tab/dotnet)
315
+
# [\.NET v12](#tab/dotnet)
316
316

317
317
318
-
# [Node.js v10 SDK](#tab/nodejsv10)
318
+
# [Node.js v10](#tab/nodejsv10)
319
319

0 commit comments