Why is validation always done on the server? When does that
occur?
Answer Posted / saad
It is not always done on server, it can be done on client
side as well but its secure on server side. if the data is
not correctly enter then the request will be sent back to
client side with error message(round trip), so to avoid
that Page's IsValid Property must be used for each control.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the benefits of Razor View?
Explain the difference between asp.net mvc and asp.net webforms? : asp.net mvc
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 are the disadvantages of view state?
Is asp.net and .net the same?
What is the file through which you can customize your asp.net application?
What are asp.net web forms?
What events will occur when a page is loaded?
What is sql data source control in asp.net?
What is a Cookie? Where is it used in ASP.NET?
What does asp in asp.net stand for?
What is localhost in asp.net?
Explain about solution explorer window?
Where is session cookies stored?
How can we provide the WebParts control functionality to a server control?