Top Articles - DotNetFunda.com

Welcome, below are the list of top 10 Articles of the website.

3-Tier Architecture in ASP.NET with C#

3-Tier architecture is a very well know buzz word in the world of software development whether it web based or desktop based. In this article I am going to show how to design a web application based o ...

How to Write a Simple login page in Asp.net

Yesterday I stumbled across a post that was posted on our forum. I was very busy with other things, when Sheo started a conversation based on that post. I was looking at it until he updated the untagg ...

DataTable - Adding, Modifying, Deleting, Filtering, Sorting rows & Reading/Writing from/to Xml

In this article, I am going to explain how to Add, Modify, Delete, Sort, Filter rows of the DataTable and also loading data from xml and writing data into xml. I will also talk about writing/reading S ...

Updating, Deleting records using GridView control

In this article, I am going to explain how to manipulate data using GridView control. This article scope is limited to Updating and Deleting records using GridView and I am not using any readymade Dat ...

How to host asp.net application on the web server (IIS)

In this article, I am going to show how to host an asp.net application on IIS 7 (I have shown this example on Windows 7 Home Premium OS), however similar steps can be followed to host the application ...

State management in ASP.NET

Web pages rarely be stand alone. Web applications almost always need to track users who visits multiple pages, whether to provide personalization, store information about a user or to track usage for ...

Beginner’s Guide: How IIS Process ASP.NET Request

This article describes how the IIS process clients requests and responses.

How to send mail automatically for every five minutes using C#?

This article explain how to send mail automatically using C# with window service.

How to insert record using GridView

Generally GridView is used to show data in tabular format. It also provide ways to modify and delete records but currently there is no way to insert record using GridView. In this article, I shall des ...

How to get value from TextBox, RadioButtonList, DropDownList, CheckBox through JavaScript

In this article I am going to show how to get value from asp.net controls like TextBox, RadioButtonList, DropDownList, CheckBoxes through JavaScript.

Implementing Full-Text Search on View

Full Text Index is used to perform queries to find-out the character data. These queries can include word or phrase searching. We can create a full-text index on a table or indexed view in the da ...

4-Tier Architecture in ASP.NET with C#

[B][I]Code Updated on 21st April 2008 to support Sorting, Paging and data manipulation through Stored Procedure in DAL[/I][/B] Almost all of us must have heard about 3-Tier architecture but what i ...