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

Do cookies store passwords?

0 Answers  


witch is the best insistute in sharpoint course.what abt future of share point course.

2 Answers  


What is the life cycle of web page?

0 Answers  


Can viewstate be accessed in another page?

0 Answers  


What is the flow of processing of the request? : asp.net mvc

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  


Distinguish between Server-side and Client-side code with its functionality?

0 Answers   Siebel,


A web service can only be written in .net? State whether true or false.

0 Answers  


Explain the disadvantages of viewstate?

0 Answers  


Is asp.net a programming language?

0 Answers  


what is satellite assembly in .net?

4 Answers   iSoft,


What are validator? Name the Validation controls in asp.net? How do u disable them?

2 Answers  


Categories