Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How you will handle session when deploying application in
more than a server? Describe session handling in a webform,
how does it work and what are the limits?

Answers were Sorted based on User's Feedback



How you will handle session when deploying application in more than a server? Describe session han..

Answer / frederickson

If we specify mode ="Inproc" session will store in
webserver itself under aspnet_wp.exe
If we specify mode = "Sqlserver" session will store in
sqlserver and it has to be serialized.

Is This Answer Correct ?    8 Yes 2 No

How you will handle session when deploying application in more than a server? Describe session han..

Answer / frederickson

we have Inproc server and outproc server
for storing session in different server we have to specify
in the webcofing mode="state" and state mode session to be
srialized. and it stores in aspnet_state.exe

Is This Answer Correct ?    5 Yes 1 No

How you will handle session when deploying application in more than a server? Describe session han..

Answer / adrien

You have 3 options.

1. Do not use any session variables.
2. Use a dedicated State Server (or state Server Farm)
3. Use SQL Server for state management

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More C Sharp Interview Questions

What does addressof operator do in background ?

0 Answers  


What is the difference between string and string in c#?

0 Answers  


What is the interface in c#?

0 Answers  


What is inner class in c#?

0 Answers  


About delegates and events?

2 Answers   ADITI,


What?s an abstract class?

5 Answers   Siebel,


What is the difference between IEnumerator and IEnumerable?

0 Answers   QuestPond,


Is c sharp open source?

0 Answers  


Can you put two constructor with the same structure in a class?

0 Answers  


What is use of hashtable in c#?

0 Answers  


Are arrays value types or reference types?

0 Answers  


hi, I am a begineer to c sharp. I have written a code for finding out prime numbers. Can anyone identify what are the flaws in my code. Kindly donot complex the code or present logic because i am new to c sharp and just started learning programming language.Thanks in advance. class Program { static void Main(string[] args) { int a,b=1; a = int.Parse(Console.ReadLine()); c= int.Parse(Console.ReadLine()); if (a % b == 0 && a % 2 != 0 && a % a == 0) Console.WriteLine(a); else if (a % b == 0 && a % 2 == 0) Console.WriteLine(a%2); Console.WriteLine("Number is not PRIME"); Console.ReadLine(); } } }

2 Answers  


Categories