The code below is in a codebehind file, there doesn't appear to be any reference to the sub Wizard1_ActiveStepChanged in the web form. Is it called implicitly?
Protected Sub Wizard1_ActiveStepChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles Wizard1.ActiveStepChanged
If Not User.Identity.IsAuthenticated Then
Wizard1.ActiveStepIndex = 0
End If
End Sub
Protected Sub Wizard1_ActiveStepChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles Wizard1.ActiveStepChanged
If Not User.Identity.IsAuthenticated Then
Wizard1.ActiveStepIndex = 0
End If
End Sub