IWizardTemplateChainToWizard Method (String, String, String, String, NavigateAttrs, 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).
Generally programmatic chaining is performed using the simpler
ChainToWizard(String, 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 primaryKey,
string queryStringParams,
string requestType,
NavigateAttrs attrs,
string paramList
)
Sub ChainToWizard (
mop As String,
primaryKey As String,
queryStringParams As String,
requestType As String,
attrs As NavigateAttrs,
paramList As String
)
Parameters
- mop
- Type: SystemString
The follow-on wizard page. - primaryKey
- Type: SystemString
The primary key value for the request. - queryStringParams
- Type: SystemString
Additional query parameters. Note that standard chaining query parameters are added automatically. - requestType
- Type: SystemString
The type of the request (by default this is "nav.") - attrs
- Type: NetQuarryNavigateAttrs
NavigateAttrs for the navigation request." - paramList
- Type: SystemString
A semi-colon separated list of param names to take from the current query string to add to the navigation querystring.
See Also