What is different between webconfig.xml & Machineconfig.xml ?
Answer / sulochana singh
Web.config & machine.config both are configuration files.Web.config contains settings specific to an application where as machine.config contains settings to a computer. The Configuration system first searches settings in machine.config file & then looks in application configuration files.Web.config, can appear in multiple directories on an ASP.NET Web application server. Each Web.config file applies configuration settings to its own directory and all child directories below it. There is only Machine.config file on a web server.
Is This Answer Correct ? | 0 Yes | 0 No |
What is asp according to you?
Which Is Faster MVC or ASP.net ?
Why mvc is better than asp.net? : Asp.Net MVC
What is mvc in asp.net tutorial? : Asp.Net MVC
Explain about solution explorer window?
How do sessions work?
there is two functions function a and function b like fun a(){.... ..... } fun b() { } in function b i write the coding to add two numbers and i need to dispaly the sum result in function a with out using global variable. how we do?
Explain how cookies work. Give an example of cookie abuse.
Describe session handling in a webfarm?
IS IT POSSIBLE TO SET TIME FOR COOKIES?HOW IT IS POSSIBLE.
What kind of data can be stored in viewstate?
What is the difference between Codebehind="MyCode.aspx.cs" andSrc="MyCode.aspx.cs"?