Shopping Cart
I´m having trouble with the Add to Cart Button. I have created a button and clicked and added the code supplied by the book.
I have done exactly as in the end files for this chapter. The code looks exactly like the end file yet it is not working for me when the button is clicked.
The message points at the Double.Parse on the first line of the code and reads "make sure the arguments to this method have valid values"
Here´s the copde I´m referring to below:
Protected Sub btnAddToCart_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Dim Price As String = Double.Parse(CType(DataList1.Controls(0).FindContr ol("PriceLabel"), Label).Text) Dim ProductName As String = CType(DataList1.Controls(0).FindControl("NameLabel "), Label).Text
Dim PictureURL As String = CType(DataList1.Controls(0).FindControl("PictureUr lLabel"), Label).Text
Dim ProductID As Integer = CInt(Request.QueryString("ProductID"))
If Profile.Cart Is Nothing Then
Profile.Cart = New Wrox.Commerce.WroxShoppingCart()
End If
Profile.Cart.Insert(ProductID, Price, 1, ProductName, PictureURL)
Server.Transfer("WroxShop.aspx")
End Sub
I´d be very grateful for any help with this
|