What is AppDomain?Explain how it works.
Answer Posted / murthy remella
Its mandatory to create application domain for running
any .NET code. Its the light weight process in which CLR
will execute the code. AppDomain is built into Framework.
Generally regular application development doesn't require
AppDomain creation, but in some specific scenarios like
loading a component in seperate domain and unloading after
its purpose is served without stopping the entire
application.
ServiceHost Applications (IIS, ASP.NET worker) will handle
creation and management of appDomain in the background
Also, for each virtualdirectory/website one application
domain is created normally, which serves all the incoming
requests.But if you think the load is high and a single
appDomain is scalable then the application can use multiple
appdomains. (http://www.IIS.net for more details)
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
How to do parallel database export in remote SQL Server in ESSL time track. It is working for local server but not working for remote SQL Server
Define the term Web Garden?
Define static function?
What is a query string in a url?
What are navigation controls? How many navigation controls are there in ASP.NET 4.0?
What is __ requestverificationtoken?
How can i explain my project during interview?many time i expalain my project but they did't accept? please explain me.
What is a server farm in iis?
i develop a web application and i gave security setting i.e autherization and athentication now it work properly on my local system , now question is ,is this security setting ie autherization and athentication which i gave in web.config will it be enough strong to secure my application on internet or i have to use some 3rd party tool or software to get security .if yes --how ? if no--what is the alternate?
Using code explain Configuration Management
Is asp.net mvc still used? : Asp.Net MVC
What is server redirect?
Explain the difference between sql invalidation and sql notification.
In which event of the page viewstate is available?
code for "For every 5days system has to create 1text file with the corresponding date and it has to store in c-drive" by using web applications