ASP.NET 2.0 BasicsIf you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 2.0 Basics section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
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