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 the new features added from ASP to ASP.NET?

0 Answers   Amdocs,


What is fulltrust?

0 Answers  


What is State Management in .Net and how many ways are there to maintain a state in .Net? What is view state?

0 Answers  


What is the difference between ASP and ASP.NET?

4 Answers   Sans Pareil IT Services, TCS,


What is http post and http get?

0 Answers  






Can viewstate be accessed in another page?

0 Answers  


best .net institute in hyderabad

7 Answers  


Define data caching?

0 Answers  


In which event of the page life cycle, is the viewstate available?

0 Answers  


What is JIT, what are types of JITS and their purpose ?

3 Answers   Infosys,


Explain different authentication modes in asp.net?

0 Answers  


I have prepared A Dynamic website in asp.net with c# and using Ms Sql server 2005 as backend database.i am facing problem while uploading this site on my FTP address it is not accessing the database.please could u tell me how cn i upload Sqlserver database on the web and what would be the connection string...???? I am using Server=".";initial catalog=databasename;persist security info=false;integrated security=SSPI;...pleas help me... Thanks in Advance..

1 Answers  


Categories