Top Dot Net AllOther Interview Questions :: ALLInterview.com http://www.allinterview.com Top Dot Net AllOther Interview Questions en-us Difference between abstract class and interface http://www.allinterview.com/showanswers/28912.html Abstract classes can have implementations for some of its members (Methods), but the inteface class can't have implementation for any of its members. Explain in-proc,out-proc and sql server. http://www.allinterview.com/showanswers/16649.html in-proc-----session kept as a live object in the web server sql server---session serialized and stored in sql server(in tempdb) What is the main Difference Between .Net 2003 and .Net 2005.and also http://www.allinterview.com/showanswers/56576.html • Difference b/w .net 2003 & .net 2005 1. vs.net2003 doesn’t carry personal webserver.whereas vs2005 will carrying personal web server called asp.net development server 2. Vs.net2003 will create set of different files for asp.net applicati what is Difference beetween Array and Hash Table.? http://www.allinterview.com/showanswers/57370.html An ArrayList behaves just like an array, except that it will dynamically expand and contract when you add/remove elements to it. A HashTable is useful when you want to lookup objects indexed by a 'key' value. It also dynamicall What is this DLL hell problem in dotnet? Can a virtual class be creat http://www.allinterview.com/showanswers/23790.html virtual class is nothing but it's a virtual class The maximum report processing jobs limit configured by your system a http://www.allinterview.com/showanswers/57352.html Use Report.Close() and Report.Dispose() Methods. how do u achieve multilevel inheritance in .NET ? http://www.allinterview.com/showanswers/16644.html by uing interfaces we can implement multiple inheritance does .NET support multiple inheritance ? http://www.allinterview.com/showanswers/16643.html No Dot net supports single Inheritance concept. what is session management ? http://www.allinterview.com/showanswers/16646.html You can store values that need to be persisted for the duration of a user's session in session variables. These variables are unique to each user session and can be accessed in any ASP.NET page within an application. You can set and acce what is ado.net http://www.allinterview.com/showanswers/27984.html ado.net means activex data object.it is used to connect data base how to manage session in webgarden ? http://www.allinterview.com/showanswers/16652.html A webgarden is physically one box with multiple processors in it. If webGarden is set to true, by default, all CPUs are enabled and ASP.NET starts one process for each CPU. So in that case I would prefer MSSQL or StateServer to store session what is stage management ? (ASP.NET) http://www.allinterview.com/showanswers/16645.html Stage management is a sub-discipline of stagecraft. Although a somewhat fluid line of work, in essence the stage management team (which can consist of a production stage manager, several assistant stage managers, and any number of production which would be the best to use inproc,outproc or sql server http://www.allinterview.com/showanswers/16651.html if we rate these modes according to performance then the ranks would be 1. InProc 2. StateServer 3. SQLServer But if we rate the same from reliability perspective then the ranks would be 1. SQLServer 2. StateServer 3. InProc how can u manage sessions ? http://www.allinterview.com/showanswers/16648.html in-proc,out-proc and sql server. How can u manage state ? http://www.allinterview.com/showanswers/16647.html managing state is done by client side techniques... viewstate,querystring,cookies server side techniques Application state,session state.