Gets or sets the Url of the page where the customer should be taken after canceling a transaction.

Namespace:  C1.Web.C1PayPal
Assembly:  C1.Web.C1PayPal.2 (in C1.Web.C1PayPal.2.dll)

Syntax

C#
[BindableAttribute(true)]
[EditorAttribute(typeof(UrlEditor), typeof(UITypeEditor))]
[DescriptionAttribute("Page to go to when purchase is canceled")]
[DefaultValueAttribute("")]
[CategoryAttribute("Behavior")]
public string PageCancel { get; set; }
Visual Basic (Declaration)
<BindableAttribute(True)> _
<EditorAttribute(GetType(UrlEditor), GetType(UITypeEditor))> _
<DescriptionAttribute("Page to go to when purchase is canceled")> _
<DefaultValueAttribute("")> _
<CategoryAttribute("Behavior")> _
Public Property PageCancel As String

Remarks

This item is optional. If you don't provide a Url, the customer will be returned to the original page after concluding the transaction.

See Also