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?s the difference between Codebehind="MyCode.aspx.cs" andSrc="MyCode.aspx.cs"?

5 Answers   SLC Ltd,


What are the best practices to follow to secure connection strings in an ASP.NET web application?

0 Answers   MCN Solutions,


how can i inharit multiple classes?

3 Answers  


Where we create sessions for Banking Applications and how to create? expalin with code?

1 Answers   Wipro,


Can you explain how ASP.NET application life cycle and page life cycle events fire?

0 Answers   MindCracker,






what is COM Object in Dot net?

6 Answers   CTS,


What is the difference between session and application?

0 Answers  


Write code to send e-mail from an asp.net application?

0 Answers  


is it possible to set more than web.config file for an ASP.net APPLICATION?can it run?how is it possible

3 Answers  


How to compare two strings with out Case sensitive ?

4 Answers   Protech, ProtoTech,


What is the function used for removing an event listener?

0 Answers  


how many session modes are available?some brief explnation

1 Answers  


Categories