CARRINHO DE COMPRAS EM MYSQL E ASP.NET
Bom dia estou implantando um carrinho de compras usando a classe[Ô] Mysql.web.profile[Ô] e [Ô]System.Web.Profile[Ô] , para
Guardar o carrinho de compras de um usuario anonimo , quando ele se autenticar no site , e usando um global.asax para guardar a configuração do profile:
void Profile_OnMigrateAnonymous(object sender, ProfileMigrateEventArgs e)
{
//get the profile for then anonymos user
ProfileCommon anonProfile = Profile.GetProfile(e.AnonymousID);
//if they have a shopping Cart,then migrate that to authrenticate user
if (anonProfile.Cart != null)
{
if (Profile.Cart == null)
{
Profile.Cart = new GARbrindes.loja.Cart();
Profile.Cart.Items.AddRange(anonProfile.Cart.Items);
anonProfile.Cart = null;
}
ProfileManager.DeleteProfile(e.AnonymousID);[txt-color=#e80000] /// da erro aqui inavlid castexception was unhandled by user code [/txt-color]
AnonymousIdentificationModule.ClearAnonymousIdentifier();
}
}
Guardar o carrinho de compras de um usuario anonimo , quando ele se autenticar no site , e usando um global.asax para guardar a configuração do profile:
void Profile_OnMigrateAnonymous(object sender, ProfileMigrateEventArgs e)
{
//get the profile for then anonymos user
ProfileCommon anonProfile = Profile.GetProfile(e.AnonymousID);
//if they have a shopping Cart,then migrate that to authrenticate user
if (anonProfile.Cart != null)
{
if (Profile.Cart == null)
{
Profile.Cart = new GARbrindes.loja.Cart();
Profile.Cart.Items.AddRange(anonProfile.Cart.Items);
anonProfile.Cart = null;
}
ProfileManager.DeleteProfile(e.AnonymousID);[txt-color=#e80000] /// da erro aqui inavlid castexception was unhandled by user code [/txt-color]
AnonymousIdentificationModule.ClearAnonymousIdentifier();
}
}
SopranoSP, eu estou utilizando LIst, super facil de manipular.
Aconselho a usar List(OF Class)
Aconselho a usar List(OF Class)
Tópico encerrado , respostas não são mais permitidas