ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
Do you have a collection of Interview Questions and interested to share with us!!
Please send that collection to along with your userid / name. ThanQ
Google
 
Categories  >>  Software  >>  Microsoft Related  >>  ASP.NET
 
 


 

 
 Visual Basic interview questions  Visual Basic Interview Questions
 C Sharp interview questions  C Sharp Interview Questions
 ASP.NET interview questions  ASP.NET Interview Questions
 VB.NET interview questions  VB.NET Interview Questions
 COM+ interview questions  COM+ Interview Questions
 ADO.NET interview questions  ADO.NET Interview Questions
 IIS interview questions  IIS Interview Questions
 MTS interview questions  MTS Interview Questions
 Crystal Reports interview questions  Crystal Reports Interview Questions
 BizTalk interview questions  BizTalk Interview Questions
 Dot Net interview questions  Dot Net Interview Questions
 Exchange Server interview questions  Exchange Server Interview Questions
 SharePoint interview questions  SharePoint Interview Questions
 Microsoft Related AllOther interview questions  Microsoft Related AllOther Interview Questions
Question
How many types of session in asp.net2.0
 Question Submitted By :: Amitsec.mca
I also faced this Question!!     Rank Answer Posted By  
 
  Re: How many types of session in asp.net2.0
Answer
# 1
ASP.NET pages typically post back to themselves in order to 
process events.

Cross Page posting enables us to submit a form and have 
this form and all its control values posted to another page.
The control which posts the page and all the control values 
it contains has PostbackURL property.

And the receiving page uses PreviousPage property and the 
PreviousPageType page directive to access the posting page 
values
 
Is This Answer Correct ?    21 Yes 11 No
Swapna
 
  Re: How many types of session in asp.net2.0
Answer
# 2
three types of session states in asp.net

InProc
OutProc
SqlServer
 
Is This Answer Correct ?    41 Yes 9 No
Banumathi
 
 
 
  Re: How many types of session in asp.net2.0
Answer
# 3
As mentioned by manumathi.There are three session states:
inproc
sqlserver
stateserver
 
Is This Answer Correct ?    22 Yes 2 No
Sathish
 
  Re: How many types of session in asp.net2.0
Answer
# 4
There are four types of session state in asp.net 2.0
1. In proc session
2. Out Proc session
3.Web Farm
4. Web Garden
 
Is This Answer Correct ?    8 Yes 16 No
Prem
 
  Re: How many types of session in asp.net2.0
Answer
# 5
Three types of Sessions are in .Net
1. In Proc
2. Out Proc
3. State Server/ Sql Server

In proc does not support Web Farming &b Web Gardening while 
the other 2 supports.

I dont know why people are saying Web Garden & Web Farming 
are the types of session for eg. Prem
 
Is This Answer Correct ?    16 Yes 1 No
Navin.cp
 
  Re: How many types of session in asp.net2.0
Answer
# 6
Three Types of Session 

i) inprocess session
II)out Process session
III) SQl-server session

Inprocess session by default in web.cofig File.
out process is stored at server side.
sql-server session is stored in Database(sql).

sabeer pasha.
 
Is This Answer Correct ?    15 Yes 3 No
Sabeer Pasha
 
  Re: How many types of session in asp.net2.0
Answer
# 7
Three types of session states in asp.net:-
1. Sql Server
2. Inprocess session
3. Out Process session
 
Is This Answer Correct ?    8 Yes 2 No
Surinder Kumar
 
  Re: How many types of session in asp.net2.0
Answer
# 8
There are three types of sessions in asp.net:
1.In-process(Default).
2.windows Service(out-proc)
3.SQL server
 
Is This Answer Correct ?    9 Yes 1 No
Knowledgenet
 
  Re: How many types of session in asp.net2.0
Answer
# 9
There are three types of session in asp.net 2.0
1.Inproc(In Local process and default one)
2.Stateserver(At differnt Process and need serialised data)
3.Sqlserver(At sql Server and need serialised data)

The latter two are good for working with web farms and web 
gardens.
 
Is This Answer Correct ?    6 Yes 4 No
Rajen
 
  Re: How many types of session in asp.net2.0
Answer
# 10
1.In Proc (bydefault, highest performance)
2. out Proc/state server(differe dedicated server)
3. SQL server(Reside in mssql databse)
 
Is This Answer Correct ?    6 Yes 2 No
Vivek
 
  Re: How many types of session in asp.net2.0
Answer
# 11
sessions are two types :
they are 
1.Inprocess(this is default,and high performence)
2:outprocess
in out proc we have other two types of sessions
they are 
     *state server
     *sql server
these out proc is useful whethr the infrmation is 
maintained in between to servers that time only we can use 
this sessions.
 
Is This Answer Correct ?    17 Yes 1 No
Mallikarjuna
 
  Re: How many types of session in asp.net2.0
Answer
# 12
two Types:
(1) Session InProc:
        INProc
(2) session OutProc:
      State Server 
      Sql Server
 
Is This Answer Correct ?    18 Yes 2 No
Jigar
 
  Re: How many types of session in asp.net2.0
Answer
# 13
There are two main categories of session in asp.net2.0,
(1) Session InProcess:
        InProc
(This is default in web.cofig file and high performence.)

(2) Session OutProcess:
      State Server 
      Sql Server
(These out proc is useful whethr the infrmation is 
maintained in between to servers that time only we can use 
this sessions.)

Simply three types of session in asp.net2.0,
i)InProc
ii)State Server
iii)SQL Server


Regards,
 Nizath Ali.U
 
Is This Answer Correct ?    11 Yes 1 No
Nizath Ali
 
  Re: How many types of session in asp.net2.0
Answer
# 14
3 types

In proc
Out proc
Sql server
 
Is This Answer Correct ?    5 Yes 3 No
Divya P I
 
  Re: How many types of session in asp.net2.0
Answer
# 15
2 Types of Session
1>Inproc
2>Outproc
 
Is This Answer Correct ?    4 Yes 1 No
Shiv Ratan
 
  Re: How many types of session in asp.net2.0
Answer
# 16
Basically there r 4 types of session these r:-

(a)InProc
(b)State server
(c)Sql Server
(d)Custom provider
(e)OutProc
 
Is This Answer Correct ?    4 Yes 8 No
Anjani Mittal
 
  Re: How many types of session in asp.net2.0
Answer
# 17
Two types of sessions are there : 
a. In process
b. Out Process

in which
 
a. In Process includes State Server/Cookies type of session 
management.

b. Out Process includes SQL Server's type of session 
management.
 
Is This Answer Correct ?    5 Yes 1 No
Renu
 

 
 
 
Other ASP.NET Interview Questions
 
  Question Asked @ Answers
 
What combination of methods are used to improve the speed of the fill() method of the DataAdapter? a) BeginFillData() and EndFillData() b) StartFillData() and EndFillData() c) BeginLoadData() and EndLoadData() d) StartLoadData() and EndLoadData() Syntax-Softtech2
You create an ASP.NET application for a hotel. The application contains a page that displays current weather conditions for the city in which the hotel is located. The application calls an XML Web service every 10 minutes to update the current weather conditions. A new page is then displayed for subsequent requests. You want the same page to be cached and retrieved from the cache during the time between calls to the XML Web service. You decide to use a Page directive to accomplish this goal. Which Page directive should you use? A . <%@ Cache Seconds="600 '' VaryByParam="Page" %> B . <%@ OutputCache Time="600" %> C . <%@ OutputCache Duration="600" VaryByParam="None" %> D . <%@ OutputCache Duration="600" %> Syntax-Softtech2
How many types are there session TCS5
What property must you set, and what method must you call in your code, in order to bind the data from a data source to the Repeater control?  1
what is the auto option in XML ?  1
In which form does the dataset store data in it? Verinon-Technology-Solutions3
What?s the difference between Codebehind="MyCode.aspx.cs" andSrc="MyCode.aspx.cs"? SLC-Ltd3
which one is faster execute reader, scalar, execute non query ? Minecode16
What are the types of assemblies and where can u store them and how a private assembly is used only by a single application, and is stored in that application's install directory (or a subdirectory therein)? Accenture3
How Can we use multiple forms in single asp.net application? Polaris2
In your web.config file which attribute of <Globalization> element identifies the default culture that will be used for web request?  1
please give a brief knowledge about these events ? page_render() page_prerender() page_unload page_loadcomplete page_preinit Netsweeper1
How .net CLR works with n-tier application HCL2
About CLS and CTS? Microsoft6
Could u send me the answer for this question as soon as possible. Im using 'System.net.mail.mailmessage' namespace for sending a mail from my application. What should I mention in 'system.net.mail.mailmessage.to' property and What should I mention in 'system.net.mail.mailmessage.from' property.  1
Diff B/W user control and server control  3
If cookies is disabled in client browser will session work ? Satyam3
Types of values mode can hold session state in web.config ? Accenture1
Suppose you display a data having 200 records in a datagrid. Then you edit 100 records of them. Now when you will press update button,all 100 records should be updated in single shot rather than reading every record and updating. How to do it? Wipro2
What are Authentication mechanisms in .Net? Accenture5
 
For more ASP.NET Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com