views:

410

answers:

2

Hi, 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 :S

can someone help me please?

Thank you

+2  A: 

If I'm understanding what you're looking for, this article should help you out:

Adding a DropDownList to an Editable DataGrid

Chad Birch
this looks good, thanks :)
Lily
A: 

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.

Scott Anderson