When I try to checkout in guest mode via OPC.aspx, clicking on PayPal Check Out button doesn't do anything.
However, If I login, PayPal checkout works.
I've debugged the issue in VS 2012 and what seems to be the issue is page validation.
Code: Select all
CheckingOutEventArgs c = new CheckingOutEventArgs(payment);
CheckingOut(this, c);
//c.Cancel before true at this point.
checkOut = !c.Cancel;
Any input?