Answer Posted / r k raj
The HTTP handler is used in web services handle the
information between web browser and web server.
| Is This Answer Correct ? | 13 Yes | 24 No |
Post New Answer View All Answers
What is data caching?
To get the values in two different controls to match which control you use it?
What is application variable?
If I have more than one version of one assemblies, then how will I use old version (how/where to specify version number?) In my application?
What are the security types in asp.net?
Is there any property names “isnavigating”?
If you are using two select queries and retrieving data. how do you access second query's result set using data reader?
How you can return View from ASP.NET Web API method?
What are the types of session in asp.net?
What are the different web pages?
How will you do windows authentication and what is the namespace? If a user is logged under integrated windows authentication mode, but he is still not able to logon, what might be the possible cause for this? In ASP.Net application how do you find the name of the logged in person under windows authentication?
What is the difference between runtime version and version?
What is session start?
What are html helpers in asp.net?
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.