Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Delete row in dataview
Message
 
À
09/09/2005 17:21:33
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Divers
Thread ID:
01048268
Message ID:
01048313
Vues:
12
Bonnie,
I thought about using a for instead of a foreach also (I swear I did <s>), but I can't understand why a foreach will not work for this. I guess I should set off some time this afternoon to acctually test it :)

Are you sure the .Row should be in there? (Again I haven't tested the code, cuz I am working in Borland today :( )


Einar
>You need to do it in reverse order, so you'll need to iterate with for rather than use foreach:
>
>DataRowView drv;
>for(int i= goView.Count-1; i >=0; i--)
>{
>    drv = goView[i];
>
>    if (drv["userid"].ToString().Equals("DSMI"))
>    {
>        drv.Row.Delete();
>    }
>    else
>    {
>        drv["userid"] = drv["userid"].ToString() + "Kretek";
>    }
>}
>
>
>~~Bonnie
>
>
>>I had tried that, I got there is no row at position 134. Same error as doing it the other way. Do I need to accept the changes, is that why its giving me an error.
Semper ubi sub ubi.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform