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

All kind of access specifiers for a class and for methods ?

1 Answers   MMTS,


What is asp according to you?

0 Answers  


how to pass session value one url to another url.my code if session("user")="abc" then response.redirect("www.abc.com\client\home.aspx") end if. so how to pass value of session in browser url

1 Answers  


how we use web services

2 Answers  


What are the different types of validation controls in asp.net?

0 Answers  






When we use cookie less session? Explain its working?

0 Answers   Sans Pareil IT Services,


How do you open a page in a new window?

0 Answers  


What tags do you need to add within the asp:datagrid tags to bind columns manually

2 Answers  


Which is an advantage of application service providers?

0 Answers  


Why we use asp.net for website development?

0 Answers  


Explain the use of dataadapter.

0 Answers  


What is Web Services?How we can consume a Web Services in our application?Explain.

1 Answers   Religare,


Categories