Syncfusion Blazor SfUploader with Azure Storage

Windows Azure Storage SDK Need to download and install the Windows Azure Storage SDK first. Go to NuGet Package Manager and search for “WindowsAzure.Storage” Note: There is a new version of SDK “Azure.Storage.Blobs” but not all functions has been migrated over to the newer version. Example: Index.razor Note: The ID field must be “UploadFiles” to... » read more

Add Google Maps to Blazor App

index.html MyPage.razor MyPageBase.cs Adding Marker https://developers.google.com/maps/documentation/javascript/markers Sources: https://www.syncfusion.com/faq/blazor/general/how-can-i-add-google-maps-to-a-blazor-application https://developers.google.com/maps/documentation/javascript/markers

Blazor Url Parameter

Install the following for NuGet… Microsoft.AspNetCore.WebUtilities Example: https://localhost/Page1?SupplierId=123 Sources: https://www.c-sharpcorner.com/article/working-with-query-string-or-query-parameter-in-blazor/