Method | Description | |
---|---|---|
HasNextStep ( ) : bool |
Returns
|
|
HasPreviousStep ( ) : bool |
Returns This will only return |
|
LinkToNext ( String linkText ) : String |
Creates an anchor tag (link) to the next step. This helper assumes there is a next step. It's advised that you use HasNextStep before calling this |
|
LinkToNext ( String linkText, IDictionary attributes ) : String |
Creates an anchor tag (link) to the next step. This helper assumes there is a next step. It's advised that you use HasNextStep before calling this |
|
LinkToNext ( String linkText, object id ) : String |
Creates an anchor tag (link) with an id attribute to the next step. This helper assumes there is a next step. It's advised that you use HasNextStep before calling this |
|
LinkToNext ( String linkText, object id, IDictionary attributes ) : String |
Creates an anchor tag (link) with an id attribute to the next step. This helper assumes there is a previous step. It's advised that you use HasNextStep before calling this |
|
LinkToPrevious ( String linkText ) : String |
Creates an anchor tag (link) to the previous step. This helper assumes there is a previous step. It's advised that you use HasPreviousStep before calling this |
|
LinkToPrevious ( String linkText, IDictionary attributes ) : String |
Creates an anchor tag (link) to the previous step. This helper assumes there is a previous step. It's advised that you use HasPreviousStep before calling this |
|
LinkToPrevious ( String linkText, object id ) : String |
Creates an anchor tag (link) with an id attribute to the previous step. This helper assumes there is a previous step. It's advised that you use HasPreviousStep before calling this |
|
LinkToPrevious ( String linkText, object id, IDictionary attributes ) : String |
Creates an anchor tag (link) with an id attribute to the previous step. This helper assumes there is a previous step. It's advised that you use HasPreviousStep before calling this |
|
LinkToStep ( String linkText, WizardStepPage step ) : String |
Creates an anchor tag (link) to the specified step.
|
|
LinkToStep ( String linkText, WizardStepPage step, object id ) : String |
Creates an anchor tag (link) to the specified step.
|
|
LinkToStep ( String linkText, WizardStepPage step, object id, IDictionary attributes ) : String |
Creates an anchor tag (link) to the specified step.
|
public LinkToNext ( String linkText ) : String | ||
linkText | String | The label for the link |
return | String |
public LinkToNext ( String linkText, IDictionary attributes ) : String | ||
linkText | String | The label for the link |
attributes | IDictionary | Additional attributes for the a tag. |
return | String |
public LinkToNext ( String linkText, object id ) : String | ||
linkText | String | The label for the link |
id | object | Object to use for the action ID argument. |
return | String |
public LinkToNext ( String linkText, object id, IDictionary attributes ) : String | ||
linkText | String | The label for the link |
id | object | Object to use for the action ID argument. |
attributes | IDictionary | Additional attributes for the a tag. |
return | String |
public LinkToPrevious ( String linkText ) : String | ||
linkText | String | The label for the link |
return | String |
public LinkToPrevious ( String linkText, IDictionary attributes ) : String | ||
linkText | String | The label for the link |
attributes | IDictionary | Additional attributes for the a tag. |
return | String |
public LinkToPrevious ( String linkText, object id ) : String | ||
linkText | String | The label for the link |
id | object | Object to use for the action ID argument. |
return | String |
public LinkToPrevious ( String linkText, object id, IDictionary attributes ) : String | ||
linkText | String | The label for the link |
id | object | Object to use for the action ID argument. |
attributes | IDictionary | Additional attributes for the a tag. |
return | String |
public LinkToStep ( String linkText, WizardStepPage step ) : String | ||
linkText | String | The label for the step |
step | WizardStepPage | The WizardStepPage to link to |
return | String |
public LinkToStep ( String linkText, WizardStepPage step, object id ) : String | ||
linkText | String | The label for the step |
step | WizardStepPage | The WizardStepPage to link to |
id | object | Object to use for the action ID argument. |
return | String |
public LinkToStep ( String linkText, WizardStepPage step, object id, IDictionary attributes ) : String | ||
linkText | String | The label for the step |
step | WizardStepPage | The WizardStepPage to link to |
id | object | Object to use for the action ID argument. |
attributes | IDictionary | Additional attributes for the a tag. |
return | String |