Hello,
i am developed an aspx page using asp.net 2.0
This page contains a detailsview control with 43 bound fields. By default, the detailsview control shows the data in a unique column, ¿how can i show the data in several columns?
Now the data is diplayed:
Id txtId
Name txtName
Telephone txtTelephone
Adress txtAdress
I would want to diplay the data:
Id txtId Telephone txtTelephone
Name txtName Adress txtAdress
The property AllowPaging is not a solution for me.
thanks a lot.
ASP.NET
Last Comment
arhame
8/22/2022 - Mon
Bob Learned
Use the GridView, instead of the DetailsView. The GridView shows data in columns, rather than rows.
Bob
Pepe102598
ASKER
i am already using gridview with detailsview. in the gridview shows all rows and when clicks above any row i show the data for this row in the datailsview control. For this, i need to display the data of the detailsview in serveral columns
Bob