What is web.config. How many web.config files can be allowed
to use in an application ?
Answer Posted / chirag
There is one web config by default but we can use any
number of web config file but inheritance will apply from
root to inward folder
| Is This Answer Correct ? | 14 Yes | 4 No |
Post New Answer View All Answers
Describe the difference between inline and code behind - which is best in a?
What are the differnt types of handler in ASP.NET?
How can you ensure a permanent cookie?
What kind of data can be stored in viewstate?
where can i gather the materials for MCP certification
What is .net remoting?
Are cookies stored on server or client?
What is event bubbling?
calling result set one procedure to anothar procedure in sql2000
Where the viewstate is stored after the page postback?
Explain what is clr?
How to implement role based security in asp.net mvc? : Asp.Net MVC
Define asp.net caching?
What is a web farm?
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.