I want to call the Wizard1_NextButtonClick like I have done below HOWEVER the page does not advance to the next step and remains at the first step.

Code:
Protected Sub Wizard_NextButtonClick(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.WizardNavigationEventArgs) Handles Wizard1.NextButtonClick

    End Sub

    Protected Sub btnButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnButton.Click
        Dim ee As New System.Web.UI.WebControls.WizardNavigationEventArgs(0, 1)
        Call Wizard1_NextButtonClick(sender, ee)
    End Sub