Question

I create a time sheet with a calendar. Now I am using the event calendar pre-render. But the event runs on every click. I want to block this event from firing when I click a button. Is this possible or not?

Was it helpful?

Solution

You can try with this code

If( ! IsPostBack)
{
  //Execute Your code
}

When you click button => He don't pass by ( ! IsPostBack)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top