|
C#
public static bool
BeforeEdit(System.Web.UI.Page Page, IDictionary e)
{
// Display a message on the Web page
Page.Response.Write("Your message
here");
return true;
// return true if you like to proceed with
editing this record
// return false in other case
}
|