Iam using Devexpress aspxgridview control in asp.net. I want to reload the page on aspxgridview_row updating event.
I tried response.redirect(“”); but it shows /Response.Redirect cannot be called in a Page callback./
So, what is the right method to reload the page on rowupdating event.
Note:
Iam using gridview with in the gridview (mastergrid and gridview in the detailrow of mastergrid). now i want to reload the page on row_updating event of detailgridview.
If ASPxGridView ASPxGridView.EnableCallBacks Property is set to
truethen you can not useResponse.Redirect.Use ASPxWebControl.RedirectOnCallback Method to redirect page to another
Urlwhile processcallback.