Which control I need to use for the following?
I need to have something similar to a table which will be populated with the related values whenever the user clicks on the submit button. The values that needs to be populated comes from three textboxes. Eg. Name, description, QTY, that are present in the same form.
When the user enters the first set of data and hits submit the values, will be added to the first row of the table. The second row should contain new set of values that are entered in the textboxes.
Can you give me a head start with this?
Pradeep ShetPosted Feb 25, 2015, 2:14 AM
Do you want to build windows or web application?
If windows then you have DataGrid control available in toolbox
http://www.dotnetperls.com/datagridview-tutorial
And if web application then you have GridView, DataList control available
http://www.codeproject.com/Articles/23471/Editable-GridView-in-ASP-NET
Mark it as answered if it helps you.