There are two categories of ASP.Net deployment:
Local deployment – in this case the entire application is contained within a virtual directory and all the contents and assemblies are contained within it and available...
The behavior of an ASP.Net application is affected by different settings in the configuration files:
machine.config
web.config
The machine.config file contains default and the machine-specific value for all supported...
A web service is a web-based functionality accessed using the protocols of the web to be used by the web applications. There are three aspects of web service development:
Creating the web service
Creating a proxy
Consuming...
What is Caching?
Caching is a technique of storing frequently used data/information in memory, so that, when the same data/information is needed next time, it could be directly retrieved from the memory instead of being...
Implementing security in a site has the following aspects:
Authentication – it is the process of ensuring the user’s identity and authenticity. ASP.Net allows four types of authentication system:
Windows Authentication
Forms...