category

home / developersection / category

Login Form using Asp.Net
asp.net 04-Sep-2012
Login Form using Asp.Net

Here, I have made a Login Form using ASP.Net, which includes use of GridView, RequiredFieldValidator, RegularExpressionValidator and JavaScript for the client-side validation. This Program contains validation like OnlyNumeric Values in Textbox,

jQuery with ASP.NET
asp.net 04-Sep-2012
jQuery with ASP.NET

JQuery is a light weight JavaScript library which that simplifies the way of HTML DOM traversing and manipulation, event handling, client side animations, etc.

Cookies in ASP.Net
asp.net 01-Sep-2012
Cookies in ASP.Net

Cookie is a small text file sent by web server and saved by web browser on client machine. Cookies are created when a user's browser loads a particular website. The website sends information to the browser which then creates a text file.

Sessions in ASP.Net
asp.net 28-Aug-2012
Sessions in ASP.Net

ASP.NET Session state provides a place to store values that will persist across page requests. Values stored in Session are stored on the server and will remain

QueryString in ASP.Net
asp.net 28-Aug-2012
QueryString in ASP.Net

We use QueryString property of Request Object for passing variables content between pages ASP.NET. QueryStrings are data that is appended to the end of a page URL.

Login Form in ASP.Net with C#
asp.net 11-Aug-2012
Login Form in ASP.Net with C#

Here, I’m going to describe Login web Form in ASP.Net. This article’s beauties are, it provide login for Admin and User both from single table according define role. This demo is having proper validation and Stay login.

State Management in ASP.Net
asp.net 10-Aug-2012
State Management in ASP.Net

A new instance of the Web page class is created each time the page is posted to the server.

Lightbox with reCaptcha in ASP.NET
asp.net 07-Aug-2012
Lightbox with reCaptcha in ASP.NET

This article describes Lightbox as a simple, unobtrusive script used to overlay images on the current page. It delivers a nice, professional looking method for displaying images as overlays through the use of hyperlinks.

Insert, Delete, Update in GridView in ASP.Net using C#
asp.net 06-Aug-2012
Insert, Delete, Update in GridView in ASP.Net using C#

ASP.NET GridView is very common and useful control. Here, I’m explaining how to work with GridView control in ASP.NET,

Validations on Asp.Net Control
asp.net 03-Aug-2012
Validations on Asp.Net Control

If we have some options but we have needed one of them or select one of them then we can use checkbox control. Let’s have a brief idea on working of checkbox control.

Regular Expression in ASP.NET
asp.net 02-Aug-2012
Regular Expression in ASP.NET

ASP.NET provides validation controls to help you check Web form data entries before the data is accepted and saved in the Database. Validation controls can be used to address the following questions.

Repeater Control in ASP.Net with C#
asp.net 24-Jul-2012
Repeater Control in ASP.Net with C#

The Repeater control performs a very common function that most Web developers have encountered in their projects work.