tag

home / developersection / tag

Retriving User Password by Using Stored Procedure in ASP.NET
asp.net 15-Feb-2011
Retriving User Password by Using Stored Procedure in ASP.NET

In this demonstration I will tell you how to retrieve user password by using Stored Procedure in ASP.NET. To perform this task I had created a UserLog

Range Validator Control in ASP.NET
asp.net 13-Jan-2011
Range Validator Control in ASP.NET

The RangeValidator control is used to check that the userenters an input value that falls between two values. It is possible to checkranges within num

CSS (Cascading StyleSheet)
asp.net 11-Jan-2011
CSS (Cascading StyleSheet)

Cascading Style Sheet (CSS) is a language which defined some formatting rule for html control. CSS are a collection of formatting rules that control t

View State in ASP.Net
asp.net 01-Jan-2011
View State in ASP.Net

View state is the method that the ASP.NET page frameworkuses to preserve page and control values between round trips. When the HTMLmarkup for the page is rendered,

Encode - Decode in ASP.NET
asp.net 22-Dec-2010
Encode - Decode in ASP.NET

Html Encode method encodes a particular string to be displayed in a browser. It is important to encode strings prior it’s rendering in the page, mainl

Difference between asp and asp.net?
asp.net 11-Dec-2010
Difference between asp and asp.net?

In ASP.Net it is very easy to drag and drop a button control and double click on the button to write the event handler for the button click event. When you click on the button at turn time, it will execute whatever code you have written in the event handler.

Web Services in ASP.Net
asp.net 11-Dec-2010
Web Services in ASP.Net

A webservice is typically an application programming interface (API) or WebAPI that is accessed via Hypertext Transfer Protocol (HTTP) and executed on

How to view information in ViewState using ASP.NET 2.0 and 3.5
asp.net 02-Dec-2010
How to view information in ViewState using ASP.NET 2.0 and 3.5

Http is a stateless protocol. Hence the state of controls is not saved between postbacks. Viewstate is the means of storing the state of server side c

Login Status Control in ASP.NET 3.5
asp.net 02-Dec-2010
Login Status Control in ASP.NET 3.5

The Login Status control displays a login link for users who are not authenticated and a logout link for users who are authenticated. The login link t

Different Navigation in ASP.Net
asp.net 30-Nov-2010
Different Navigation in ASP.Net

DifferentNavigation in ASP.Net ASP.NETsupports following ways to navigate between pages in your application.HyperlinkControlResponse.RedirectMethodSe

Populate Records in Second Listbox According to the Selection in First List box
asp.net 29-Nov-2010
Populate Records in Second Listbox According to the Selection in First List box

Suppose you have two list box, ListBox1 and ListBox2 and you want to populate values of ListBox2 according to the selection in ListBox1 then it’s very