2. Hidden Field
Hidden fields are just input fields that are embedded in HTML tag that is not visible to user. Hidden fields stores information of a single page like view state.
3. Cookies
A cookie is a small amount of data stored in client side, and passed with all page requests. There are two types of cookies persistent and temporary. Persistent cookies are stored in client side as a text file, and these cookies will not be destroyed even if the user shut down the system. So these cookies are used in a later time. But the temporary cookies are stored in browsers memory, which will be active for the current session only. For using cookies you have to add the System.Net name space.
An example code to implement Remember me feature in your login
Using System.Net;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
HttpCookie cookie = Request.Cookies["mycookie"];
if (cookie != null)
{
string s = cookie["uname"].ToString();
if (s == "vivek")
{
Response.Redirect("Default2.aspx");
}
}
}
}
protected void Button1_Click(object sender, EventArgs e)
{
HttpCookie cookie = new HttpCookie("mycookie");
cookie["uname"] = txtCookie.Text;
cookie.Expires = DateTime.Now.AddYears(1);
Response.Cookies.Add(cookie);
}
In the above code
cookie.Expires = DateTime.Now.AddYears(1);
Specifies the scope of cookie,Another properties avilable for setting cookie scope are.
cookie.Value=DateTime.Now.ToString();
cookie.Path="/MyFolder";
cookie.Domain="mysite.com";
4.Query String
Adding query string to URL from page1.aspx
Response.Redirect(page2.aspx?qid=" + 123 + "&tId=" + 34);
Acessing the query strings in page2.aspx
string key = Request.QueryString["qid"]; string _Tid = Request.QueryString["tId"]; ;
4. Application State
The ASP.NET application variables are not user specific. Application variables are initialized when the application started and destroys when server is restarted or IIS restarted. You can declare an application variable at the Application Start method in Global.asax file. Application variables are normally used to count application hits and finding number of users online.
protected void Page_Load(object sender, EventArgs e)
{
Application.Lock();
int count = 0;
if (Application["hit"].ToString() != string.Empty)
{
count = Convert.ToInt32(Application["hit"]);
}
count++;
Application["hit"] = count;
Response.Write(count);
Application.UnLock();
}
void Application_Start(object sender, EventArgs e)
{
Application["hit"] = "";
}
5.Session State
Session variables are user specific.Applicable to a single session,They are also declared in Global.asax as.
void Session_Start(object sender, EventArgs e)
{
Session["uname"] = "";
}
Every client that accesses the application has a different session and a distinct collection of information.it forces the web server to store additional information in memory. This extra memory requirement,even if it is small, can quickly grow to performance-destroying levels as thousands of clients access the site.
ASP.NET tracks each session using a unique 120-bit identifier
