Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Wizard1.ActiveStepChanged

Status
Not open for further replies.

wallm

Programmer
Apr 4, 2005
69
GB
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
 
Code:
Protected Sub Wizard1_ActiveStepChanged(ByVal sender As Object, ByVal e As System.EventArgs) [b]Handles Wizard1.ActiveStepChanged[/b]
The section marked in bold above is what triggers the event to be fired.


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
yeah.. ofcourse that's what it is.

thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top