Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to create a "multi-line" form using repeaters?

Status
Not open for further replies.

nimarii

MIS
Jan 26, 2004
213
0
0
US
Hello -

I'm new to C#, and can create basic webforms. I'm exploring repeaters, and was wondering if it's possible to create a repeater that will:

1. display existing data
2. enable you to add a new record and save
3. display existing data with newly created record
4. enable you to add another new record

not sure if this can all be encompassed in a repeater, but if anyone has any suggestions, I'd appreciate it very much!

 
this question is better suited for forum855.

to answer your question repeater is a blank template which allows you to create whatever you want in a repeated manor. There orginal intention was for read-only display. you can use them for read/write operations, but it requires more event wiring.

DataView, GridView, FormView where designed for read/write operations. there are plenty of examples online about how these work.

in the end, it's all just html and your only limited by your imagination.

Jason Meckley
Programmer
Specialty Bakers, Inc.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top