Redirecting from within callback raised from ASPxGridView

A fuller discussion of this topic can be found here:
http://community.devexpr...rums/p/57423/291566.aspx
In brief, it can be handled as follows:
protected void Page_Load(object sender, EventArgs e) 
{
   if(this.IsCallback) 
   {
      //ASPxWebControl.RedirectOnCallback("1.asp");
      this.Response.RedirectLocation = "1.aspx";
      this.Response.End();
   }
}


Last modified by Mohit @ 4/7/2025 8:29:34 AM