Telerik RadAjax supports redirecting the user to a new page on the
server during an AJAX request. Currently there are two ways to accomplish
this:
1) For .NET 1.0:
You can add the following code in an event handler in the code-behind:
Response.AddHeader("Location", <redirect location>);
2) For .NET 1.1 and .NET 2.0:
You can add the following code in an event handler in the code-behind:
Response.RedirectLocation = <redirect location>;