0
kicks
Server.Transfer() in an UpdatePanel
This is a short explanation why you can't use a Server.Transfer() call within an event fired by a control in an UpdatePanel.
The reason why you can't use a Server.Transfer() in an UpdatePanel is more and more obvious when you think about what AJAX is. We only request small pieces of markup which replace little portions of a page, the whole point of AJAX is to avoid downloading the whole page again. ...