AJAX - Force Full Page Postback

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to force a "traditional" full page postback in AJAX?

I have a page with multiple UpdatePanels and I usually call
UpdatePanel.Update() to do a partial postback, but I have one condition that
requires an update to several controls that are not in an UpdatePanel and it
makes sense to post the entire page for a refresh. I don't really want to
put the entire page in an update panel to call the Update method to refresh
the controls and I was hoping that there was some way to force a traditional
page postback from the code-behind.
 
Back
Top