Get Letters in Alphabet with C#
Have you ever needed to do something with the letters of the alphabet? This is quite common in navigation systems where you have alot of data and need to break up things into sections alphabetically. You can always create an ArrayList and populate each section manually, but a better way is to just [...]
Upload, Read, and Parse file in ASP.NET
While there are many tutorials for ASP.NET on uploading and saving a file to the disk as well as read and parsing a file from the disk, there is no simple tutorial for uploading, reading and parsing the data in memory. A client of ours needed to do this so I thought I’d list [...]
Create popup date picker using ASP.NET calendar control
A client recently required a popup ASP.NET calendar control to use on their site. I thought we would share our solution to this.