 |
Since version 4.0.0 Telerik RadGrid automatically supports Response.Redirect event in ajax mode (EnableAJAX="true"). However, Server.Transfer is not supported in Telerik RadGrid AJAX mode.
Still you can make Server.Transfer call to a page which holds grid instance (with asynchronous requests enabled. To do that you need to add the following line in the PageLoad handler of the page in which the grid resides:
<MyGridInstance>.AjaxUrl = "<MyPageName.aspx>"; |
For version 3.x.x In scenarios where a given control performs redirection you can still have Telerik RadGrid working in AJAX mode. All you need to do is:
1. Set EnableAJAX to true;
2. Use RadGrid.AsyncRedirect instead of Response.Redirect in the code-behind to perform the redirection. You can also use RadGrid1.AsyncRedirect(myUrl, bool) where the second parameter indicates whether the redirection URL is absolute or not (true for absolute and false for not absolute).
 |
Server.Transfer is not supported in Telerik RadGrid AJAX mode. You should replace it with RadGrid.AsyncRedirect if applicable. |