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

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

Syntax

C#
[BindableAttribute(true)]
[DefaultValueAttribute("")]
[DescriptionAttribute("Page to go to after successful purchase")]
[EditorAttribute(typeof(UrlEditor), typeof(UITypeEditor))]
[CategoryAttribute("Behavior")]
public string PageOK { get; set; }
Visual Basic (Declaration)
<BindableAttribute(True)> _
<DefaultValueAttribute("")> _
<DescriptionAttribute("Page to go to after successful purchase")> _
<EditorAttribute(GetType(UrlEditor), GetType(UITypeEditor))> _
<CategoryAttribute("Behavior")> _
Public Property PageOK 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