如何从 Azure 存储资源管理器中读取 html 文件

how to read html file from azure storage explorer

如何从 Azure 存储资源管理器读取 .html 文件。 通过 connectionstring 可以访问 blob。 字符串模板 = bloburl + "file.html";

是的,您可以创建 html 并将其保存到创建的容器中。

您可以为这个 blob 创建 URI public,然后通过您的自定义访问它 URL -- 您必须先为存储容器创建一个 CNAME。

这里有一个关于如何从 .NET 使用 Blob 存储的好资源: http://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-how-to-use-blobs/

                        var url = TemplateMain;
                        var httpClient = new HttpClient();
                        var html = await httpClient.GetStringAsync(url);

我试过使用 GetStringAsync 并且它工作正常。