Latest Answer: IIS ,BusTalk Etc ...
Latest Answer: Garbage Collector in .Net Framework is used for Automatic Memory Management i.e. it is collect all unused memory area and give to application. system.gc.collect() is a method for release the memory. But remember one think, it is only an request, i.e. ...
Latest Answer: The MACHINE.config file contains default and machnine-specific values for all supported setting. Machine setting are normally controlled by the system admin, and app should never be given write access to it.An application can override most default values ...
Latest Answer: 1) Application object is created when first request comes to the web server related the web application. Inside the application sessions will be created.2) Application variables are global. you can access across the sessions. where as the session variables ...
Latest Answer: There are three types of JIT compilers in .NETPre :-Compiles complete source code into native code in a single compilation cycle.This is done at the time of deployment.Econo :-Compiles only those methods that are called at runtime.Compiled methods are ...
Latest Answer: Yes.There can be multiple web.config files in an ASP.NET application but they should be in the different folders.For the entire application there can be only one main Web.Config.If you assign membership and roles to an application you can see a specific ...
Latest Answer: In 2005 The VS When we trying to run first time any application the 2005 VS gives us warning that want to run application without beb.config file. ...
Latest Answer: garbage collector has 3 generations 0,1,2 the highest generation is 2. In .net the garbage collector is normally invocked implicitly but you can force the GC explicitly also.when first generations is fill i.e 0 GEN & your application wants to store ...
View page << Previous 3 4 5 6 [7] 8 9 10 11 12 Next >>

Go Top