Whohoe it works
Ill show you what ive changed for people that want to do the same
in ShoppingCartView.Aspx.
vB
Change:
Quote:
|
quote:Partial Class ShoppingCartView
|
Quote:
Inherits System.Web.UI.UserControl
Private _isReadOnly As Boolean = False
Dim priceTotal As Decimal = 0
Dim quantityTotal As Integer = 0
Public Event CartUpdated As EventHandler
|
Into:
Quote:
|
quote:Partial Class ShoppingCartView
|
Quote:
Inherits System.Web.UI.UserControl
Private _isReadOnly As Boolean = False
Dim priceTotal As Decimal = 5
Dim quantityTotal As Integer = 0
Public Event CartUpdated As EventHandler
|
Imar thank you verry much for you help really usefull thoughts.