i have wizard control with multiple steps.
something like this
<asp:wizard>
<wizardsteps>
</wizardsteps>
<wizardsteps>
</wizardsteps>
<wizardsteps>
<usercontrol>
</wizardsteps>
the last step user control is the issue which is loading every time page is posted back and not just when particular step loads . that is making page slow. how can i possibly load user control when particular step is loaded
To load your UC only when the step three is on, you can add an event in your Wizard and try something like this:
And then, you should remove the UC from your ASPX.