what is session ?how sessions are handeled in application?
write the clauses of sql server in their order.
Answer Posted / 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 View All Answers
Why we use dbms for projects? Why don’t we save any application data in separate files instead of dbms?
What is active web pages?
Explain the concept of event bubbling in ASP.NET?
9. Why should we hire you over the others waiting to be interviewed?
Can you change a master page dynamically at runtime? How?
1.how to encrpt query string in asp.net? 2.there are 10000 records then i wnat display 5000 records one gridview and 5000 records another grid view what is the process?
Can a master page have more than one contentplaceholder?
What is break mode?
What is ispostback method in asp.net?
What is variable and constant in .net programming language?
Write a code for passing ArrayList in Web API?
How to fetch a data from one table to another table in asp.net ?
What is dynamic web page with example?
When maintaining session through sql server, what is the impact of read and write operation on session objects?
what are the events raised in asp.net page life cycle?in which stage view state can be loaded?