I have form submission doing a post back. The controller action accepts the values as parameters. For ex: EditProduct(int productid, string productname).
productid is supplied from the form in a hidden field. How can I ensure that that a user will not invoke this action and pass this productid and name as queystring and the model binding will bind the vales and product is saved in database?
Thanks for the help.
Regards, Matt