Hi
I have a website that is using an asp wizard step. All works well but now I need to hide the next button on a single step.
The next button is used several times so deleting it isn't an option, I need to hide it just for that particular step.
Please see code below. How do I add the visibe=false to this code?
protected void wizSubmitOrder_ActiveStepChanged(object sender, EventArgs e)
{
if (wizSubmitOrder.ActiveStepIndex == 1)
{
Many Thanks
Go to the complete details ...