what is session . how it is use ?

Answers were Sorted based on User's Feedback



what is session . how it is use ?..

Answer / hitesh chandegara

session variables to share information between the pages of
asp.net web application.

usage

initialization of the state

session["variable name"]=initialization;

get the values from the session

label1.text=session["variable name"].tostring();

Is This Answer Correct ?    14 Yes 0 No

what is session . how it is use ?..

Answer / ff

session is special kind of memory for individual users .
best example

if you access any website it's asking username and
password once we provide the creditionals its create session
for each user session has time out of 20 minutes so this
memory maintain by webserver .

session["name"]=value

Is This Answer Correct ?    3 Yes 0 No

what is session . how it is use ?..

Answer / michael jerold

save he date in diffrent page an u can access the data value
from session variable.

to manage the state management in asp.net

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More ASP.NET Interview Questions

What is the name of the base class that all web forms will be inherited?

7 Answers  


explain store procedure and trigger

3 Answers  


What do you mean by caching in asp.net?

0 Answers  


How to fetch a data from one table to another table in asp.net ?

0 Answers   MCN Solutions,


What are the disadvantages of viewstate/what are the benefits

3 Answers  






What are Master Pages in ASP.NET? or What is a Master Page?

0 Answers   MCN Solutions,


Describe Segmentation With Paging?

0 Answers   MaxSolPro,


What is viewstate? What does the "enableviewstate” property do? Whay would I want it on or off?

0 Answers  


Which is the parent class of the web server control?

0 Answers  


What you mean by partial Class in asp.net 2.0?

3 Answers   TCS,


Define the types of configuration files.

0 Answers  


What is data grid view in asp.net?

0 Answers  


Categories