I'm using the RadAjaxManagerProxy to ajaxify a control.
There are certain scenarios where I need to do a full page refresh when this control does a postback. The logic that knows when the full page refresh is needed happens on the server. So, what happens is the client initiates the partial page refresh, but then the server side code needs to override that and force a full page refresh. I'm currently doing this by calling Response.Redirect to the same page, but that's causing some problems. Is there another way for the server side code to override the partial page refresh and force it to refresh the full page?
There are certain scenarios where I need to do a full page refresh when this control does a postback. The logic that knows when the full page refresh is needed happens on the server. So, what happens is the client initiates the partial page refresh, but then the server side code needs to override that and force a full page refresh. I'm currently doing this by calling Response.Redirect to the same page, but that's causing some problems. Is there another way for the server side code to override the partial page refresh and force it to refresh the full page?