Question 241 – What is Normalization in SQL Server? In relational database design, the process of organizing data to minimize redundancy is called normalization. It usually involves dividing a…
This article is a part 1 of series of article on SQL Server Reporting Services. This will help you to get started with SQL Server Reporting Services (SSRS). Getting…
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…
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…
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…
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…
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…
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…
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…