Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,025

HOME > Windows Azure > Windows Azure (Storage) and .Net Application (C#) > ตอนที่ 6 : How to use .Net (Asp.net) Delete Blob การลบรายการไฟล์บน Blob



Clound SSD Virtual Server

ตอนที่ 6 : How to use .Net (Asp.net) Delete Blob การลบรายการไฟล์บน Blob

ตอนที่ 6 : How to use .Net (Asp.net) Delete Blob การลบรายการไฟล์บน Blob บทความนี้จะเป็นหัวข้อเกี่ยวกับการใช้ .NET (ASP.Net) เพื่อลบ Delete ค่าจาก Blob Storage ของ Windows Azure โดยในขั้นแรกจะแสดง List รายการของ Blob ออกมาซะก่อน จากนั้นสามารถที่จะเลือกรายการต่าง ๆ เพื่อลบข้อมูลออกได้

How to use .NET (ASP.Net) Delete Blob

ข้อมูลที่อยู่ใน Blob ถูกจัดเก็บไว้ใน Container ชื่อว่า pictures

How to use .NET (ASP.Net) Delete Blob

กรณีที่ดูผ่าน Azure Storage Explorer


Syntax for Delete Blob
// Create the blob client.
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();

// Retrieve reference to a previously created container.
CloudBlobContainer container = blobClient.GetContainerReference("mycontainer");

// Retrieve reference to a blob named "myblob.txt".
CloudBlockBlob blockBlob = container.GetBlockBlobReference("myblob.txt");

// Delete the blob.
blockBlob.Delete();


Example ตัวอย่างการเขียน ASP.Net เพื่อลบไฟล์ที่อยู่บน Blob

Default.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Auth;
using Microsoft.WindowsAzure.Storage.Blob;

using System.IO;

namespace myWebApp
{
    public partial class Default : System.Web.UI.Page
    {

        public class Member
        {
            public string URL { set; get; }
            public string Name { set; get; }
        }

        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                BinData();
            }
        }

        protected void BinData()
        {

            // Create the connectionstring
            String StorageConnectionString = "DefaultEndpointsProtocol=https;AccountName=[yourAccount];AccountKey=[yourKey]";

            // Retrieve storage account from connection string.
            CloudStorageAccount storageAccount = CloudStorageAccount.Parse(StorageConnectionString);

            // Create the blob client.
            CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();

            // Retrieve reference to a previously created container.
            CloudBlobContainer container = blobClient.GetContainerReference("pictures");

            // Create List
            List<Member> ls = new List<Member>();
            // Loop over items within the container and output the length and URI.
            foreach (IListBlobItem item in container.ListBlobs(null, false))
            {
                if (item.GetType() == typeof(CloudBlockBlob))
                {
                    CloudBlockBlob blob = (CloudBlockBlob)item;

                    ls.Add(new Member { URL = blob.Uri.ToString(), Name = blob.Name });

                }
            }

            // Create data to GridView
            this.myGridView.DataSource = ls;
            this.myGridView.DataBind();

        }

        protected void myGridView_RowDataBound(object sender, GridViewRowEventArgs e)
        {

            if (e.Row.RowType == DataControlRowType.DataRow)
            {

                //*** Name ***//
                Label lblName = (Label)(e.Row.FindControl("lblName"));
                if (lblName != null)
                {
                    lblName.Text = DataBinder.Eval(e.Row.DataItem, "NAME").ToString();
                }

                //*** View ***//
                Image imgView = (Image)(e.Row.FindControl("imgView"));
                if (imgView != null)
                {
                    imgView.ImageUrl = DataBinder.Eval(e.Row.DataItem, "URL").ToString();
                }

                //*** Delete ***//
                Button btnDelete = (Button)(e.Row.FindControl("btnDelete"));
                if (btnDelete != null)
                {
                    btnDelete.Attributes.Add("OnClick", "return confirm('Delete ?');");
                }

            }

        }

        protected void myGridView_RowDeleting(object sender, GridViewDeleteEventArgs e)
        {

            // Create the connectionstring
            String StorageConnectionString = "DefaultEndpointsProtocol=https;AccountName=[yourAccount];AccountKey=[yourKey]";

            // Retrieve storage account from connection string.
            CloudStorageAccount storageAccount = CloudStorageAccount.Parse(StorageConnectionString);

            // Create the blob client.
            CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();

            // Retrieve reference to a previously created container.
            CloudBlobContainer container = blobClient.GetContainerReference("pictures");

            //*** Name (Delete by Blob Name) ***//
            Label lblName = (Label)myGridView.Rows[e.RowIndex].FindControl("lblName");

            // Retrieve reference to a blob.
            CloudBlockBlob blockBlob = container.GetBlockBlobReference(lblName.Text);

            // Delete the blob.
            blockBlob.Delete();

            BinData();
        }

    }
}

Default.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" enableEventValidation="false" Inherits="myWebApp.Default" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>ThaiCreate.Com Azure Storage Tutorial</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
        <asp:GridView ID="myGridView" runat="server" 
            AutoGenerateColumns="False" 
            OnRowDataBound="myGridView_RowDataBound" Width="400px" 
            OnRowDeleting="myGridView_RowDeleting">
            <Columns>
                <asp:TemplateField HeaderText="Name">
                    <ItemTemplate>
                        <asp:Label ID="lblName" runat="server"></asp:Label>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField HeaderText="View">
                    <ItemTemplate>
                        <asp:Image ID="imgView" runat="server" />
                    </ItemTemplate>
                    <ItemStyle HorizontalAlign="Center" />
                </asp:TemplateField>
                <asp:TemplateField HeaderText="Delete">
                    <ItemTemplate>
                        <asp:Button ID="btnDelete" runat="server" CommandName="Delete" Text="Delete" />
                    </ItemTemplate>
                    <ItemStyle HorizontalAlign="Center" Width="100px" />
                </asp:TemplateField>
            </Columns>
        </asp:GridView>
    
    </div>
    </form>
</body>
</html>



Screenshot

How to use .NET (ASP.Net) Delete Blob

แสดงรายการ Blob และเลือกรายการที่จะ Delete ลบ

How to use .NET (ASP.Net) Delete Blob

แสดงการยินยัน Confirm การลบข้อมูล

How to use .NET (ASP.Net) Delete Blob

รายการถูกลบเรียบร้อยแล้ว และเมื่อไปดูที่ Blob Storage บน Windows Azure ก็จะถูก Delete ลบออกไปด้วย








บทความที่เกี่ยวข้อง

บทความถัดไปที่แนะนำให้อ่าน


   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2013-12-29 20:06:43 / 2017-03-24 15:13:29
  Download : No files
 Sponsored Links / Related

 
ตอนที่ 1 : รู้จักกับ Windows Azure และเบื้องต้นกับ Storage สำหรับ .Net Application
Rating :

 
ตอนที่ 2 : ปรับแต่ง Visual Studio เรียกใช้งาน Library เพื่อติดต่อกับ Azure Storage
Rating :

 
ตอนที่ 3 : รู้จักกับ Azure Blob Storage และการเขียนร่วมกับ Azure for .Net Application
Rating :

 
ตอนที่ 4 : How to use .Net (Asp.net) Upload file to Blob การอัพโหลดไฟล์ลงใน Blob
Rating :

 
ตอนที่ 5 : How to use .Net (Asp.net) List the Blobs การแสดงรายการไฟล์จาก Blob
Rating :

 
ตอนที่ 7 : รู้จักกับ Azure Table Storage Service และการเขียนร่วมกับ .Net Application
Rating :

 
ตอนที่ 8 : How to use .Net (Asp.net) Add Entity to a Table Storage - บันทึกข้อมูลลงตาราง
Rating :

 
ตอนที่ 9 : How to use .Net (Asp.net) Retrieve Entity from Table Storage - อ่านข้อมูลในตาราง
Rating :

 
ตอนที่ 10 : How to use .Net (Asp.net) Update Entity in Table Storage - แก้ไขข้อมูลในตาราง
Rating :

 
ตอนที่ 11 : How to use .Net (Asp.net) Delete Entity in Table Storage - ลบข้อมูลในตาราง
Rating :

 
ตอนที่ 12 : รู้จักกับ Azure Queue Storage และการเขียนร่วมกับ .Net Application
Rating :

 
ตอนที่ 13 : How to use .Net (Asp.net) Create a message Queue - สร้างคิวใหม่
Rating :

 
ตอนที่ 14 : How to use .Net (Asp.net) Peek at the next message - อ่านคิวถัดไป
Rating :

 
ตอนที่ 15 : How to use .Net (Asp.net) De-queue the next messag - ขยับไปยังคิวถัดไป
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 03
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่