Search code examples
c#c#-4.0calendarprerender

How can I block the calendar prerender when I click a button?


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?


Solution

  • You can try with this code

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

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