Reputation: 4089
I am using asp.net and I would like to create a table which allows the user to enter multiple rows. some of the rows are to be dropdownlists. I dont know how to do this.
Can someone help me please?
Upvotes: 0
Views: 1781
Reputation: 12503
What are you using for data storage? Are you using SQL Server? Are your drop-down lists powered by enumberations or reference data? What version of .NET are you using?
It seems like you want to create a data entry application utilizing ASP.NET. If your database is SQL server and you're uzing .NET version 3.5, I recommend using a simple GridView with a LinqDataSource. Check out Scott Guthrie's blog for some cool examples.
Upvotes: 0