what is session ?how sessions are handeled in application?
write the clauses of sql server in their order.
Answer Posted / amruta dash
Session is used for storing the information in Server. We
can store the information in one page and can send to
other pages. we need to assign the value to a sessionid.For
ex: txtphone_Number.Text = Session["PhNo"].ToString();
or Session.Add("PhNo", txtphone_Number.Text);
Session.Remove("PhNo"); for Remove the session value
Session.Abandon(); for clear all/kill the session value
of a form or application.
This have some limitation like if I will refresh the
page the session values will expired. and the default time
is 20 mins, we can increase the time for a session.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain the difference between Repeater and Data list control in ASP.NET?
In how many ways we can retrieve table records count?
i want to implement grid view value in paypal site. so how to create this code in asp.net with C#
How to implement globalization and localization in the use interface in .net.
How to create events for a control?
What do you mean by authorization?
How can we inherit a static member?
How to display Alert in ASP.NET
Explain asp.net mvc request life cycle? : asp.net mvc
What is the difference between trace and debug in asp.net?
What is the caspol.exe tool used for?
Is asp.net a programming language?
What is difference in .net 1.1 and .net 2.0?
List of words of preprocessor in .net?
How does session authentication work?