I have a DropDownList and am trying to prevent its use as an attack vector. Can I assume that the user cannot actually change the DDL and postback values ββto the server? At the moment, I am getting this ASP.NET error message if I try to change the package after sending:
For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them.
Do I understand correctly that this is due to the fact that integrity is compromised in the viewstate hash? Is there any way around this?
thanks
source share