By
Question 231 – What is the use of <compilation> tag in ASP.Net Web.Config File? Compilation tag configure the settings of the compiler. debug and defaultLanguage are the common attributes…
By
Question 221 – What are the Event available in Global.asax? Events Description Application_Init Fired when an application initializes or is first called. It’s invoked for all HttpApplication object instances. Application_Start…
By
Question 211 – What are the Disadvantages of SQL Server modes? Processing is very slow in nature. Object serialization and de-serialization creates overhead for application. As the session data…
By
Question 201 – What are the Advantages of Session? It helps to maintain user states and data to all over the application. It can easily be implemented and we…
By
Question 191 – What are Hidden Frames in ASP.Net? A hidden frame is a frame with 0 width and height, so that no one can see it. You can…
By
Question 181 – What is a State Management in ASP.Net? State management is the process by which you maintain state and page information over multiple requests for the same…
By
Question 171 – What are the differences between Machine.Config and a Web.Config files in Asp.Net? Web.config Machine.config Machine level configuration Application/folder level configuration Can have more than one Web.config…
By
Question 161 – What is Windows Authentication Mode in ASP.Net? Windows Authentication mode relies upon IIS to perform the required authentication of a client. After IIS authenticates a client, it…
By
Question 151 – What is an ASP.NET Application and Page Life Cycle? ASP.NET creates an environment which can process the request. i.e. creates application object, request, response and context…