ASP.NET Tutorial/Profile/Event

Материал из .Net Framework эксперт
Перейти к: навигация, поиск

Using the ProfileAutoSaving event to turn off the auto-saving feature

   <source lang="csharp">

VB version Public Sub Profile_ProfileAutoSaving(sender As Object, _

 args As ProfileAutoSaveEventArgs)
   
   If Profile.PaidDueStatus.HasChanged Then
     args.ContinueWithProfileAutoSave = True
   Else
     args.ContinueWithProfileAutoSave = False
   End If

End Sub

C# version public void Profile_ProfileAutoSaving(object sender, ProfileAutoSaveEventArgs args) {

   if (Profile.PaidDueStatus.HasChanged)
     args.ContinueWithProfileAutoSave = true;
   else
     args.ContinueWithProfileAutoSave = false;

}</source>