大約有文件上傳到Azure的BY ASP.NET MVC一些參考,但我無法找到沒有在ASP.NET網頁的領域文件上傳到Azure存儲由ASP.NET網頁
如何實現這樣的代碼上傳到Azure存儲?
嗯..欲瞭解更多信息,
我的目標是在CK編輯器
但由於Azure的託管圖片上傳,普通CKEditor的參考不工作。
所以我用Google搜索,並使用此代碼塊
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(
CloudConfigurationManager.GetSetting("StorageConnectionString"));
// Create the blob client.
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
// Retrieve reference to a previously created container.
CloudBlobContainer container = blobClient.GetContainerReference("lawimage");
// Retrieve reference to a blob named "myblob".
CloudBlockBlob blockBlob = container.GetBlockBlobReference("myblob");
// Create or overwrite the "myblob" blob with contents from a local file.
using (var fileStream = System.IO.File.OpenRead(name))
{
blockBlob.UploadFromStream(fileStream);
}
但它不工作,
和我 '的web.config' 是
<appSettings>
<add key="StorageConnectionString" value="DefaultEndpointsProtocol=https;AccountName=lawcbt;AccountKey=[MyAccountKey]/>
</appSettings>
有沒有人做過上傳Azure存儲通過ASP.NET WebPages?
P.S>更清楚,我的「upload.aspx」源文件是這樣的
您是否獲得某種處理錯誤的?或者,對服務器的POST請求返回OK(200),但該文件不在容器上? –
處理錯誤,我想要一些整體上傳到Azure源的雞尾酒由Asp.net網頁 –