Sort Alphanumeric Grid View Values
Author
: gurucoders
Blog
: Dotnet Tutorials ,Codings & Examples
Date
: 9/3/2012 11:58:00 AM
'Sort Alphanumeric Grid View Values in Asp.netIn Asp.net gridview there is no option to sort the alpha numeric values by default. So i Google some sorting Algorithm and finally got the good Article from - http://www.davekoelle.com and i mixed up the algorithm with the gridview it works very well.download the sample working exmaple here:'
Read full article
C# 4.0 language Spefication doc
Author
: gurucoders
Blog
: Dotnet Tutorials ,Codings & Examples
Date
: 4/27/2012 6:27:00 AM
'Download C# 4.0 language documents from Microsoft'
Read full article
test post from live writer
Author
: gurucoders
Blog
: Dotnet Tutorials ,Codings & Examples
Date
: 3/9/2012 11:59:00 AM
''
Read full article
Author
: gurucoders
Blog
: Dotnet Tutorials ,Codings & Examples
Date
: 3/7/2012 8:58:00 AM
'(function(d, s, id) (document, 'script', 'facebook-jssdk'));'
Read full article
Disable Double Click Asp.net Button
Author
: gurucoders
Blog
: Dotnet Tutorials ,Codings & Examples
Date
: 3/7/2012 8:42:00 AM
'How to Prevent Double click in Asp.netThe following snippets will prevent you from the Double click Just use the below line code under page_load event:cmdSubmit.Attributes.Add("onclick", "this.disabled=true;" + ClientScript.GetPostBackEventReference(cmdSubmit,"").ToString());note:- cmdSubmit should be Asp.net Button Namefor more information visit the site: http://shawpnendu.blogspot.in/2010/02/how-to-disable-multiple-button-click-in.html'
Read full article
How to Read all blob list from the Windows Azure Storage Containers
Author
: gurucoders
Blog
: Dotnet Tutorials ,Codings & Examples
Date
: 1/24/2012 7:06:00 AM
'Read all Blob List Names from the Windows Azure ContainersThe Following snippets is used to read all the Blob list details from the azure containersand also we can avoid the transport connection error while reading the huge blob list.by the paging segment concept can able to read large no of blob list... ///////// Getting Blobs List if it's below than 5000 /////////// TextWriter tw = new StreamWriter ("d:/blob_thumblist.txt"(...)'
Read full article
How to Check Azure Blob List Exist or Not
Author
: gurucoders
Blog
: Dotnet Tutorials ,Codings & Examples
Date
: 1/6/2012 11:38:00 AM
'Check Blob List Exist or Not use the following snippet to check whether the blob is Exist or not public static bool Exists(this CloudBlob blob) catch (StorageClientException e) else } }'
Read full article