Generally, we require nested structure of grid to display hierarchical data or Master Child data. Here it is done using gridview nested in repeater.

Generally some tasks are required to be scheduled or dependent on the time. So this can be performed easily using windows service. Here are the steps to create windows service quickly.

Generally, it is required to express Datetime difference in terms of year, month or day format. Basic example of this is the Age calculation. In .NET Date difference is expressed in timespan. If you require age only in Year then

Object: Most ASP.NET Applications implement roles to deal with role permissions and security. Sometimes, it is required to keep existing database structure to manage Roles. So, custom role provider is used for this. Here are the steps to implement navigation based on the custom role provider.

For a developer, the MOST COMMON problem is the database connectivity. The most common reason is wrong connection string. Here are the steps to test connection string and see connection problem.

Object:
1. Create dropdownlist dynamically with autopostback property true
2. Keep dropdownlist during postback
3. Maintain selected value during postback.
Here is the sample for this.

The main object of this article is to access value of dynamic asp.net controls which are generated conditionally. For this, we will save viewstate of dynamic controls.
Suppose we have one dropdown and one button. When user selects “Generate” option, the Dynamic table will be generated. In each cell of table there will be textbox. User enters value in the textboxes and click on button then it will display all user entered values.

This article explains the steps to implement localization for windows app using .NET

1. Design the interface by using table layout panel.

2. Change the localizable property of form to true.

Here are the steps to fix this problem:

Step 1:
Right click on My Computer and Goto Computer management
Select Services and applications
Start indexing service If not started.

In my previous post, I explained the different ways to implement Mac/iPhone style dock menu in your website. In this post, the steps are explained to implement in free hosted blogger blog.
Demo: here

I like Mac OS X dock menu and decided to write an article to add this type of dock menu in the website/blog. In this article, I will cover a few ways to add dock style navigation menu for your website.

Yesterday, my boss shared a Google doc spreadsheet form with view permission only and I got disabled Form, Tools, Insert, Format menu options. How can I see the form UI? It is good and interesting object for me to see the form UI of spreadsheet.

Sometimes, it is required to view browser server interaction what requests are being sent from the computer to the web server and response from the web server. This article explains the different tools to monitor and analyze all incoming and outgoing HTTP traffic between the browser and the web servers.

Generally, For a web developer, It is required to know the exact requests are being sent from his computer to the web server and response from the web server. Here are the steps to view all HTTP requests and responses with Firebug.

The use of Ajax techniques has led to an increase in interactive or dynamic interfaces on web pages. With Ajax, web applications can retrieve data from the server asynchronously in the background without interfering with the display and behavior of the existing page.
For a developer, It is required to log Ajax request & response to identify errors.