Answer Posted / hema
1. web.config is never really called. But whenever the
application starts/restarts, values from web.config are
reloaded into memory.
2. Any changes (even of just a simple spacing) to
web.config restarts the application. So your session will
be lost.
| Is This Answer Correct ? | 10 Yes | 4 No |
Post New Answer View All Answers
Can we add code files of different languages in app_code folder?
Define static constructor?
What are the validation controls available in ASP.NET?
What is asp.net and its advantages?
Why session is more secure than cookies?
Explain swagger components.
Write a code snippet to implement the indentation in json in web api.
How do cookies work? Give an example of their abuse.
What is the difference between Hash table and Array list?
Explain State management in asp.net
What are client activated objects?
What are triggers of an updatepanel?
Which protocol is used in a web api?
is there any third party tools are using in .net technologies? what are there ? give me the brief introduction?
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.