///
/// Override LoadData() method to display a user friendly message after log out.
///
Public Sub LoadData()
'Add your process logic here. For example, display a Good bye message when user logs out
BaseClasses.Utils.MiscUtils.RegisterJScriptAlert(Me, "UNIQUE_MESSAGE_KEY", "Good bye!")
End Sub
|