category

home / developersection / category

Reducing Page size in Asp.net application
asp.net 19-May-2014
Reducing Page size in Asp.net application

Purpose of this article is to learn how to reduce the page size in asp.net applications. Another thing which we learn through this article is how to increase performance of asp.net application by reducing response time of asp.net pages.

Basic of Generic class in C#
asp.net 12-May-2014
Basic of Generic class in C#

I would like to share basic of generics. Here first we will learn Problem statement and then will resolve the problem using Generics.

Extension Method in C#
asp.net 12-May-2014
Extension Method in C#

I would like to share how to create Extension method in c# and why we need to have this method in C#.

Getting Data in chunks from ASP.net server
asp.net 05-May-2014
Getting Data in chunks from ASP.net server

I would like to share a way by which server may transfer the data to client in chunks rather than sending entire data.

CRUD Operation using JQuery and Http handler (.ashx) in ASP.Net
asp.net 09-Apr-2014
CRUD Operation using JQuery and Http handler (.ashx) in ASP.Net

In this article I am going to explain how can we achieve simple crud operation (create, read, update and delete) using Jquery and Http handler in asp.net without using asp.net heavy controls on web page.

Editable Grid View System using BootStrap in ASP.Net
asp.net 25-Jan-2014
Editable Grid View System using BootStrap in ASP.Net

Editable Grid View System using BootStrap in ASP.Net

Membership, Roles, User Profile in ASP.NET
asp.net 20-Jul-2013
Membership, Roles, User Profile in ASP.NET

Membership is a self-standing feature in ASP.NET for authentication; it can be integrated with ASP.NET role management to provide authorization services for your site.

Validation Control in ASP.Net
asp.net 16-May-2013
Validation Control in ASP.Net

In this article, I’m trying to explain the concept of input validation and its types in asp.net and how to implement them in your application.

Session in ASP.Net
asp.net 15-May-2013
Session in ASP.Net

In this article, I’m trying to explain the concept of session in asp.net

Query String in ASP.Net
asp.net 14-May-2013
Query String in ASP.Net

When working with websites, you often need to pass values from one page to another like data from html page to aspx web forms in context of Asp.Net

Cookies in ASP.Net C#
asp.net 11-May-2013
Cookies in ASP.Net C#

In this article, I’m trying to explain how to read and write cookies in asp.net

Creating the TableAdapter Using a Simplified Main Query
asp.net 29-Jan-2013
Creating the TableAdapter Using a Simplified Main Query

For this tutorial we will add a TableAdapter and strongly-typed DataTable for the Employee table the DAL.xsd dataset. The Employee table contains a ReportTo field that specified the EmployeeID of the employee’s manager.