Frage

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?

War es hilfreich?

Lösung

You can try with this code

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

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

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top