There's an ASP.NET WebForms page. It has some validators.
My question is, is the client validation enough or I must also check validated values on the server after postback? In other words, must I also use server validation and how do I use it?
|
There's an ASP.NET WebForms page. It has some validators. My question is, is the client validation enough or I must also check validated values on the server after postback? In other words, must I also use server validation and how do I use it? |
|||
|
|
|
You should always check on the server side. What if the client has javascript turned off? What about a carefully crafted request? |
|||||
|