Решение:
Обрабатываем событие кнопки Далее
protected void wizSubmitOrder_NextButtonClick(object sender, WizardNavigationEventArgs e) { if (e.CurrentStepIndex == 0) { Page.Validate("ValidateQuantity"); if (!Page.IsValid) e.Cancel = true; } if (e.CurrentStepIndex == 1) { Page.Validate("ShippingAddress"); if (!Page.IsValid) e.Cancel = true; }