Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/06/2005, 22:27
Avatar de xknown
xknown
 
Fecha de Ingreso: diciembre-2004
Ubicación: Cusco - Perú
Mensajes: 2.248
Antigüedad: 20 años, 1 mes
Puntos: 7
No es necesario hacer: Dim session("Cart") As New System.Collections.Hashtable
simplemente déjalo con:
Código:
session("Cart") = CartItems
Para recuperar el HashTable haces esto:
Código:
Dim CartItems As System.Collections.Hashtable = CType(session("Cart"), System.Collections.Hashtable) ' más recomendable
' o
Dim CartItems As System.Collections.Hashtable = session("Cart")
Saludos
__________________
Alex Concha
Buayacorp - Programación y Diseño