suggestions welcome

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a C# ASP.NET webform wherein the user enters data in 3 textboxes and
clicks a button. The data is then displayed in the webform. The user can then
enter the next batch of data and clicks the button again. The new data is
then displayed below the first data. As the user enters more data, the data
is entered below the previous data. I'm thinking of using a DataGrid or a
repeater control. Can I just creat Label controls at runtime? Any
suggestions?
 
Hi,

You can use either a DataGrid or a Repeater.

I would go for the repeater, as you only need to display the data.

How are you saving the data entered?
You could use databinding with a repeater and do it.

Cheers,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top