Link to home
Start Free TrialLog in
Avatar of Jason Livengood
Jason LivengoodFlag for United States of America

asked on

Entering Unlimited Line Items in ASP.NET

I am taking some line item information from the user pertaining to driving violations.(Date of Conviction,Offense,Location, Type of Vehicle Operated) I have to make it so the user can enter pretty much an unlimited amount of line items. Does anybody have any suggestions or examples on the best way to accomplish this in C# and asp.net. Any help or advice would be most appreciated.

Jason
Avatar of YZlat
YZlat
Flag of United States of America image

are you writing that to the file or entering into a data structure.

If data struucture, try ArrayList
Avatar of Jason Livengood

ASKER

It will be written to data. Yes , I need to figure this out as well. However, I guess I was thinking more about the user interface first. To your point, whatever I choose I will most likely end up iterating through something. However, I'm not sure if I'm even that far just yet.

Jason
A multine textbox should be suffice for you.
ASKER CERTIFIED SOLUTION
Avatar of Jason Livengood
Jason Livengood
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Worked well