Exemplo n.º 1
0
 public void OnAfterStep(String wizardName, String stepName, WizardStepPage step)
 {
 }
Exemplo n.º 2
0
 public bool OnBeforeStep(String wizardName, String stepName, WizardStepPage step)
 {
     return(true);
 }
Exemplo n.º 3
0
		/// <summary>
		/// Creates an anchor tag (link) to the specified step.
		/// <code>
		/// &lt;a href=&quot;/page2.rails&quot;&gt;linkText&lt;/a&gt;
		/// </code>
		/// </summary>
		/// <param name="linkText">The label for the step</param>
		/// <param name="step">The WizardStepPage to link to</param>
		/// <param name="id">Object to use for the action ID argument.</param>
		/// <returns></returns>
		public String LinkToStep(String linkText, WizardStepPage step, object id)
		{
			return LinkTo( linkText, step.WizardController.Name, step.ActionName, id);
		}
Exemplo n.º 4
0
		/// <summary>
		/// Creates an anchor tag (link) to the specified step.
		/// <code>
		/// &lt;a href=&quot;/page2.rails&quot;&gt;linkText&lt;/a&gt;
		/// </code>
		/// </summary>
		/// <param name="linkText">The label for the step</param>
		/// <param name="step">The WizardStepPage to link to</param>
		/// <param name="id">Object to use for the action ID argument.</param>
		/// <param name="attributes">Additional attributes for the <b>a</b> tag.</param>
		/// <returns></returns>
		public String LinkToStep(String linkText, WizardStepPage step, object id, IDictionary attributes)
		{
			return LinkToAttributed( linkText, step.WizardController.Name, step.ActionName, id, attributes);
		}
Exemplo n.º 5
0
 /// <summary>
 /// Creates an anchor tag (link) to the specified step.
 /// <code>
 /// &lt;a href=&quot;/page2.rails&quot;&gt;linkText&lt;/a&gt;
 /// </code>
 /// </summary>
 /// <param name="linkText">The label for the step</param>
 /// <param name="step">The WizardStepPage to link to</param>
 /// <param name="id">Object to use for the action ID argument.</param>
 /// <returns></returns>
 public String LinkToStep(String linkText, WizardStepPage step, object id)
 {
     return(LinkTo(linkText, step.WizardController.Name, step.ActionName, id));
 }
Exemplo n.º 6
0
 /// <summary>
 /// Creates an anchor tag (link) to the specified step.
 /// <code>
 /// &lt;a href=&quot;/page2.rails&quot;&gt;linkText&lt;/a&gt;
 /// </code>
 /// </summary>
 /// <param name="linkText">The label for the step</param>
 /// <param name="step">The WizardStepPage to link to</param>
 /// <param name="id">Object to use for the action ID argument.</param>
 /// <param name="attributes">Additional attributes for the <b>a</b> tag.</param>
 /// <returns></returns>
 public String LinkToStep(String linkText, WizardStepPage step, object id, IDictionary attributes)
 {
     return(LinkToAttributed(linkText, step.WizardController.Name, step.ActionName, id, attributes));
 }