Global.asax is basically ASP.NET Application file. It’s a place to write code for Application-level events such as Application start, Application end, Session start and end,...
Response.Redirect The page is redirected permanently. Used to navigate within the same application as well as navigating from one application to another application. The URL...
Mutable and immutable are English words meaning "can change" and "cannot change" respectively. The meaning of the words is the same in the IT context;...
1. Atomicity Definition: Atomicity ensures that all operations within a transaction are completed successfully as a whole, or none of them are. If one part...
What is a Page Directive?-ASP.Net directives are instructions or commands to specify optional settings, such as registering a custom control and page language. These settings describe how the...
1.User Control is a page file with extension .ascx which can only be used withina single application. But custom controls are assemblies(dll files) that can beused...