I can get all the code stripped out except this line in checkout.ascx is using the payment info for the post back.
protected void btnSubmitOrder_Click(object sender, EventArgs e) {
if (!Page.IsValid)
return;
SubmitOrder(Membership.GetUser(Utils.GetUserName()).Email, paymentOption.CheckoutPaymentType, paymentOption.CreditCard, paymentOption.BillingAddress);
}
If the line is commented out then the submit button doesn't work. Any suggestions?
|