Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

The OnPropertyChanged event is fired after a template property has been modified. You can use this event to perform any additional processing or validation for the property that has been changed.

Code Block
xml
languagexmlcsharp

<script runat="template">
protected override void OnPropertyChanged(string propertyName)
{
   
Response.Write(propertyName + "has changed");

   base.OnPropertyChanged(result);
}
</script>