"how to stop telerik radwindow from always reloading on the next postback" Code Answer

37

You can use the IsPostBack property of the page to see if this is the first time it is loading or a postback and set the VisibleOnPageLoad property accordingly:

    radWindow1.VisibleOnPageLoad = !Page.IsPostBack;

This way the window will open only if IsPostBack is false - i.e. when the user first opens the page.

By VP. on April 25 2022

Answers related to “how to stop telerik radwindow from always reloading on the next postback”

Only authorized users can answer the Search term. Please sign in first, or register a free account.