Answer Posted / eswara redy
.net is network enable technology.
.net is a framework developed by the MS.
using this we can develop web services
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a web api endpoint?
Where is session data stored in asp net?
What are the built-in objects in asp.net?
Differentiate between globalization and localization.
How can we secure the data which is send from client side to server? Like the login id and paasword needs to be authenticated on the server but we cannot send it in plain text into the server.One more thing we are not using the SSL here.
Can we store object in viewstate?
Is asp.net 64-bit enabled? How?
How are sessions stored?
Explain the Order of events in an asp.net page?
What is the difference between a default skin and a named skin?
How can you handle unmanaged code exceptions in asp.net?
What are the types of session 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.
What is the default timeout for a cookie?
What is simple data binding?