Pergunta

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?

Foi útil?

Solução

You can try with this code

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

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top