Skip to main content

Posts

Showing posts from March, 2015

Check Container Exists In Azure Blob Storage in C#.Net

In this article i am going to explain about How to Check Container Exists In Azure Blob Storage in C#.Net .There is no predefined method exists in the .Net Library to check whether the specific container exists or not in the blob storage. But we can check the container existence using Get Blob Properties, which does a HEAD request against the blob and returns 404 error if the container doesn't exists.

Azure Blob Storage Create Container - C#.Net,VB.Net

In this article i am going to explain about How to Create Container in Azure Blob Storage Using C#.Net & VB.Net . This is achieved by using the Create method of the CloudBlobContainer class.

How to Implement Asp.Net GridView Sorting Example Using C#.Net & VB.Net or how to Use of AllowSorting GridView Property.

In this article i am going to explain about How to Implement Asp.Net GridView Sorting Example Using C#.Net & VB.Net or how to Use of AllowSorting GridView Property . This is achieved by using the AllowSorting and OnSorting properties of the GridView and SortExpression attribute of boundfield if you set AutoGenerateColumns to false.

How to Implement Asp.Net GridView Pagination Using C#.Net & VB.Net

In this article i am going to explain about How to Implement Asp.Net   GridView Pagination Using C#.Net & VB.Net . This is achieved by using the AllowPaging,PageSize and OnPageIndexChanging properties of the GridView .