Category: My Blog

  • Blog
  • Category: My Blog

Building Layered Application with ASP.NET 2.0

There are lots of discussion about building layered application with asp.net 2.0. As we all know this can be done in many way. I have found one interesting article on this.It covers all the aspects of building layered web application using asp.net 2.0.here is the link for that article… http://imar.spaanjaars.com/QuickDocId.aspx?quickdoc=416

ExpandoObject class in C# 4.0

As you know till now in c# everything was static and known at design time. But with the C# 4.0 language Microsoft have enabled new dynamic data type which is belongs to Dynamic Language Runtime on top of CLR(Common language Runtime). As you know that dynamic object will know their behaviour at run time. Here

Why we should write blogs and do community work

I am doing blogging since last 5 years and I have seen lots of people asking the same things. Why do you write blog? do you have any side income for this blog? Why you are so active in community ? I am answering this questions almost every day. So I decided to write a

Difference between All and Any operator in linq

In this post we are going to learn about difference between ‘All’ and ‘Any’ operator in Linq. All operator checks whether all elements have met specific conditions or not while Any operator check whether there is any elements exist in collection or not? So what we are waiting for Let’s take a example. using System;