How can I postpone checkback checkbox?

I have an ASP.NET page with Javascript. I have some checkboxes, and I want to give the user time to check and uncheck more than one window before postback ... so when the user ticks / uncheck the box, postback will happen in 5 seconds. How can i do this? I tried various methods found online, but all are incomplete or incorrect.

Thank!

+3
source share
1 answer

Set the AutoPostBack property of the checkboxes to false. Use the button that performs the postback for you (for example, calling the Save Changes button)

. JavaScript, ButtonClick xx .

+2

Source: https://habr.com/ru/post/1766744/


All Articles