What is web.config. How many web.config files can be allowed
to use in an application ?
Answer Posted / karteek
Web.Config can be only one in a web application's root but
it may contain any number of web.config files inside the
subfolders of the application
The web.config file in subfolder overrides the web.config in
the root for that folder in which it is present.
If a subfolder doesnot has a web.config then the web.config
in the root is uses as usual
Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Explain the concept of event bubbling in ASP.NET?
What is odata in web api?
Contrast oop and soa. What are tenets of each16. How does the xmlserializer work? What acl permissions does a process using it require?
What is webresource axd?
What is server side session management?
How long the items in ViewState exists?
What are the main differences between asp and asp.net?
Do gac'ed assemblies have fulltrust?
How are sessions stored?
Explain how caching in asp.net 2.0 is different from caching in asp.net 1.1?
Where web.config file is used?
What is the difference between a cookie and a pixel?
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.
What is the file through which you can customize your asp.net application?
What parameters can you pass in the url of the api? Can get and post use the same url?