Forum Moderators: open

Message Too Old, No Replies

Collecting a list of stuff in .Net?

The user will enter a list of items for processing

         

RossWal

12:26 am on Feb 5, 2003 (gmt 0)

10+ Year Member



I need to provide the user with a means of typing in a list of things, say friends names. Then, on the server, I need to process the list.

My working plan is to provide a textbox for entry, an Add button that will move the stuff to a listbox, and a hidden field (probably not a server control) for gathering what is in the listbox at submission.

This all seems a bit obscure. Anyone have a better plan they care to share?

Thanks,
Ross

Xoc

6:48 am on Feb 5, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You could do that, or even easier is just let them type the full list in the textbox separated by commas or semicolons. Then Split that and add it in one step.