Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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
languagecsharp
<script runat="template">

...


protected override void OnPropertyChanged(string propertyName)

...


{

...


Response.Write(propertyName + "has changed");

...


base.OnPropertyChanged(result);

...


}

...


</script>