Author: admin

  • Blog
  • Author: admin

Playing with Update Panel in asp.net

While taking interview for asp.net I often asked questions regarding update panel and how they works and how we can asynchronous post back using update panel without post backing whole page. To my surprise most of people don’t know how to use update panel using triggers. Let’s create simple example to demonstrate use of trigger.

Windwos Live Writer Directly writing Blogs from desktop

If you are still logged in to blogger for writing yours blogs then here is the easy way to write blogs directly from your desktop. Windows live writer is a free application for writing blogs from your desktop. It supports lots of provider. You just have to setup a blog once then you don’t need

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