|
Public Shared Function BeforeEdit(Page As System.Web.UI.Page,
parNewValues As OleDbParameterCollection, where As String) As Boolean
' 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
End Function |