What is Session State and How do You use Session State?

Session state is a server side tool for managing state. Every time your
web app goes to the server to get the next request, the server has to know how
much of the last web page needs to be "remembered" when the new information is
sent to the web page. The process of knowing the values of controls and
variables is known as state management.
|
A Simple way to Call Client Side Code using ASP.Net and C#

The goal of this article is to take an ASP.Net webForm, add a button to the
form, do client side onMouseOver events and change background color, button
color and fire a Javascript alert message. Most web programmers have used
Javascript to do this in old ASP code, this might be a new twist for you and I
encourage you to check it out. This uses the control.Attributes command to call
the onMouseOver event all on the
client side..
|