protected void paypalPay_Click(object sender, ImageClickEventArgs e)
 {
     PayPalRemotePost remote = new PayPalRemotePost(serviceUser.GetPaypalGateway());
     remote.InitialisePaiment(Request.Url.ToString() + "?randSubHex=" + presenter.GetSubscriptionHex());
     remote.Post();
 }
 protected void paypalDonate_Click(object sender, ImageClickEventArgs e)
 {
     PayPalRemotePost remote = new PayPalRemotePost(serviceUser.GetPaypalGateway());
     remote.InitialiseDonation(Request.Url.ToString());
     remote.Post();
 }