what is session ?how sessions are handeled in application?
write the clauses of sql server in their order.

Answers were Sorted based on User's Feedback



what is session ?how sessions are handeled in application? write the clauses of sql server in their..

Answer / wormworm

Session is one of state management option to store any
structure type of object. It can be accessed by using
key-value pair and it alive for certain period of time which
specified by user.

Is This Answer Correct ?    2 Yes 2 No

what is session ?how sessions are handeled in application? write the clauses of sql server in their..

Answer / a

Session is set by the developer, not by the user.

More information at:
http://msdn.microsoft.com/en-us/library/ms972429.aspx

Is This Answer Correct ?    0 Yes 0 No

what is session ?how sessions are handeled in application? write the clauses of sql server in their..

Answer / 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

More ASP.NET Interview Questions

What are ASP.NET Web Forms? How is this technology different than what is available though ASP?

1 Answers   BirlaSoft,


How many types of triggers are there in update panel?

0 Answers  


what if we delete web.config or machine.config? will a website work if we delete webconfig....or if we delete machine config?

4 Answers   TCS,


What is a proxy in web service?

0 Answers  


What is Model-View-View Model?

0 Answers   MCN Solutions,






Which color scheme in a Repeater control can you provide alternatively?

1 Answers   Siebel,


what are the different ASP.NET Application Folders?

1 Answers   Wipro,


Turn Off ASP Session State on an IIS 5.1 Web Site

1 Answers  


What is an example of an application service provider?

0 Answers  


Differentiate between structure and class.

0 Answers  


Explain the functionality of "EnableViewState" ? What happens if you want it on or off?

1 Answers   Siebel,


What is the purpose of the following segment? If ( !IsPostBack) { sqldataAdapter1.Fill (dsusers1); DataGrid1.DataBind (); } a) To populate the DataAdapter the first time the web page id displayed. b) To populate the DataSet every time the web page is displayed. c) To populate the DataAdapter every time the web page is displayed. d)To populate the DataSet the first time the web page is displayed.

2 Answers   Syntax Softtech,


Categories