I am using Jquery to hide and show the buttons(Add,Edit,Delete) which is not secure. Can i remove the handler when hiding the buttons & add it when showing. Can it be acheived using Jquery?
I am using Jquery to hide and show the buttons(Add,Edit,Delete) which is not secure.
Share
You can prevent postback on button click using javascript. But you can’t affect server-side event subscription from client code. All the way you need to have server-side security check.