Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

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.

<script runat="template">
protected override void OnPropertyChanged(string propertyName)
{
Response.Write(propertyName + "has changed");
base.OnPropertyChanged(result);
}
</script>
  • No labels