IWizardTemplateChainToWizard Method (String, String) |
Chain to another wizard programmatically.
Typically wizards are chained together in meta-data by setting the
ChainsToWizard
attribute and an appropriate
FinishTarget.
Wizard chaining allows multiple wizard pages to be glued together into, essentially, one wizard.
In general the platform attempts to glue the wizards together as seamlessly as possible in order
to provide the appearance to the end use of a single wizard.
Note that internally this method performs a call to
Navigate(String, String, String, String, NavigateAttrs, String).
If more navigation control is required in programmatic chaining, use the
ChainToWizard(String, String, String, String, NavigateAttrs, String) overload.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax void ChainToWizard(
string mop,
string queryStringParams
)
Sub ChainToWizard (
mop As String,
queryStringParams As String
)
Parameters
- mop
- Type: SystemString
The follow-on wizard page. - queryStringParams
- Type: SystemString
Additional query parameters. Note that standard chaining query parameters are added automatically.
See Also