How can we improve the Performance of an ASP.NET Web Page?

This is the most common question from the ASP.NET forum in any interview. In this post I’m going to point out some of the important points that may help to improve the performance. Here I used the word “improve performance” in the sense to decrease the loading time of the page. There are various reasons … Read more

Enterprise Library in ASP.NET?

Enterprise Library: It is a collection of application blocks and core infrastructure. Enterprise library is the reusable software component designed for assisting the software developers. We use the Enterprise Library when we want to build application blocks intended for the use of developers who create complex enterprise level application. Enterprise Library Application Blocks Security Application … Read more

What are master pages?

Some points about Master Pages, The extension of MasterPage is ‘.master’. MasterPage cannot be directly accessed from the client because it just acts as a template for the other Content Pages. In a MasterPage we can have content either inside ContentPlaceHolder or outside it. Only content inside the ContentPlaceHolder can be customized in the Content … Read more

What is WebParts in ASP.NET?

ASP.NET 2.0 incorporates the concept of WEB PARTS in itself and we can code and explore that as easily as we have done with the other controls in the previous sessions. We can compose web parts pages from “web parts”, which can be web controls, user controls. Component of Web Parts The web parts consist … Read more

What are the Navigations techniques in ASP.NET?

Navigation can cause data loss if it not properly handled. We do have many techniques to transfer data from one page to another but every technique has its own importance and benefits. We will discuss the following techniques in this article. Response.Redirect Server.Transfer Server.Exceute Cross page posting In ASP.NET, navigation refers to the process of … Read more