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
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 |
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 |
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 |
Descrie about response.buffer and repsonse.flush ?
Singleton Design pattern?How do you achieve it?
What is a gridview in asp.net?
Apart from IDE what are the enhancements in asp.net 2.0?
What is a DLL Hell Problem in .Net?
What are cookies in your browser?
What is cookieless session id explain in brief?
What are ASHX files?
What is a PostBack ?
What is the main difference between grid layout and flow layout?
What's the advantage of using System.Text.StringBuilder over System.String?
3 Answers IBM, IdeaLake, Infosys,
Take one textbox if I am inputting abc alphabet in capital letter or in small letter on the button click it will be bcd or if I enter 123 and it would be 234 like that in ASP.NET?