How to let users edit list<T> content?
Posted
by iTayb
on Stack Overflow
See other posts from Stack Overflow
or by iTayb
Published on 2010-04-07T18:29:11Z
Indexed on
2010/04/07
18:33 UTC
Read the original article
Hit count: 299
I'm making an aspx
page that can edit books. A book is an complex class with lots of properties.
I've made an edit page for most of them, however I'm having trouble with showing edit options for my Sellers
Proprety. It is an list<Seller>
object.
Seller
is as follows:
public class Seller
{
private string sellerName;
private double price;
}
How can I print a list to the screen, and let the clinet edit it, then load it back to the object?
Thank you very much.
© Stack Overflow or respective owner