简体   繁体   中英

how can I copy all cells in a datarow to session?

foreach (has.has_actorRow actorrow in actortable.Rows) { 
                foreach(object actorcell in actorrow){
                //add all to session
                }
            }

gives me an error " has.has_actorrow" does not have a method 'getenumerator'"

probably you want to do actorrow.Cells

foreach (has.has_actorRow actorrow in actortable.Rows) { 
                foreach(object actorcell in actorrow.Cells){
                //add all to session
                }
            }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM