Hi
I'm at the Paypal stage of the Wingtips tutorial (VB version) and I'm losing the program when I click on Paypal to check out, and I don't really know how to see where it's going. I'm using Visual Studio 2013 Ultimate.
This is the button click routine just before I lose things:
Protected Sub CheckoutBtn_Click(sender As Object, e As ImageClickEventArgs)
Dim usersShoppingCart As New ShoppingCartActions()
Session("payment_amt") = usersShoppingCart.GetTotal()
Response.Redirect("Checkout/CheckoutStart.aspx")
End Sub
The C# version of this is at http://www.asp.net/web-forms/tutorials/aspnet-45/getti ...
Go to the complete details ...