Hi Dave,
sorry for my interruption again.
Thanks, I got this code snipped running.
But my cart is still empty.
In the Page Load Event of Checkout.vb class there will be checked for request Parameter codeid
Sincere
Guido
sorry for my interruption again.
Thanks, I got this code snipped running.
But my cart is still empty.
In the Page Load Event of Checkout.vb class there will be checked for request Parameter codeid
If Not Page.IsPostBack Then
If Not (Request.QueryString("codeid") Is Nothing) Then
'link order and build cart for client.
Dim codeid As String = Request.QueryString("codeid")
Dim objCCtrl As New CartController
objCCtrl.BuildFromSeedOrder(PortalId, codeid)
End If
End If
still any idea?Sincere
Guido