Try to use the below code in the RowChanged event handler
System.Web.UI.Page page = (System.Web.UI.Page)System.Web.HttpContext.Current.Handler;
page.ClientScript.RegisterStartupScript(this.GetType(),"open","window.open('WebForm2.aspx');",true);
Where WebForm2.aspx is the page you want to open.
HC