Blog

How to install Sublime Text 3 in Ubuntu

I am quite having fun with Ubuntu on Oracle virtual box.In last blog post, I have already shown you how you can run ASP.NET 5 (vNext) app in Ubuntu. Now we are going to setup development environment for ASP.NET 5(vNext) and my preferred choice of editor is sublime text. If you have not heard about

Great ASP.NET Datagrid Search Articles.

I have found some great ASP.NET Data grid articles. Please go through it. 1) Drill down Data grid Searching with ASP.NET: This articles provide all the information to develop basic search in asp.net datagrid. here is the link:http://www.sitepoint.com/article/datagrid-searching-asp-net 2) Highlighting Multiple Searching Keywords for ASP.NET Datagrid. This article describes how to highlight searching keyword in

Using custom collections with the ASP.NET DataGrid control

Most of the developer use data controls for retrieving data and binding it to the data grid. But collections in .net technology provide great alternative instead of using data reader,data set or data view to bind data grid. I have found a great msdn article that describes all thing that you can do with data

Overriding static member in child class with C#.NET,VB.NET

Static member are accessible without creating the objects of the class so you don’t need to create a object for that class. Micorosft CLR does not permit the static methods to be override in child class. But off course you can hide the static method of parent method with new keyword in child class. Here