I want to make multiple rows data entry page that whenever a record data is filled, a new record of data entry automatically is added (MS Access Continuous forms behavior).
I know how to make it by Gridview and Repeater and ListView, but what is the best and optimum server control to perform this job?
What to you mean by "optimum"? In all cases you'll need to update the database with the new record and rebind the control to display the new record. Use whichever you want, that gives the look you want on the page.
Member
56 Points
657 Posts
What is the best control to use for data entry (Multiple Rows)? GridViewm, ListView, Repeater
Jun 17, 2019 04:54 PM|alihusain_77|LINK
I want to make multiple rows data entry page that whenever a record data is filled, a new record of data entry automatically is added (MS Access Continuous forms behavior).
I know how to make it by Gridview and Repeater and ListView, but what is the best and optimum server control to perform this job?
The data entry records will consists of :
So which control is most fit for this job?
Contributor
5961 Points
2466 Posts
Re: What is the best control to use for data entry (Multiple Rows)? GridViewm, ListView, Repeater
Jun 17, 2019 06:14 PM|KathyW|LINK
What to you mean by "optimum"? In all cases you'll need to update the database with the new record and rebind the control to display the new record. Use whichever you want, that gives the look you want on the page.
Contributor
3140 Points
983 Posts
Re: What is the best control to use for data entry (Multiple Rows)? GridViewm, ListView, Repeater
Jun 18, 2019 01:31 AM|Yang Shen|LINK
Hi alihusain_77,
You can see the detailed differences and comparisons between the three in the following links:
https://www.codeproject.com/Articles/667439/Comparing-ListView-with-GridView-DataList-and-Repe
Generally, Gridview has more default functions, such as paging, however it is not convenient for later design.
Repeater can be customized freely, but almost all functions need to be written by yourself.
Listview has more powerful functions than repeater, it's also slightly more complex to use.
All these three controls can meet your needs, which one to choose depends on more detailed requirements of your project.
Best Regard,
Yang Shen