|
C#
public static bool
BeforeEdit(System.Web.UI.Page Page, IDictionary e)
{
// Redirect to another page
Page.Response.Redirect("anypage.aspx");
return true;
// return true if you like to proceed with
editing this record
// return false in other case
}
|