Link to home
Start Free TrialLog in
Avatar of jumpstart0321
jumpstart0321

asked on

ASP.net 2.0 Custom formatting of results inside a FormView.

I'm doing a query such as the following:
SELECT TOP(3) ItemName FROM Items WHERE merchantCategory='Travel' ORDER BY NEWID()
to display inside a formview. I would like the results to display as follows:
Item1 | Item2 | Item3
However, they're automatically going to display like this inside the formview:
Item1
Item2
Item3
How do I custom format the results using the formview?
ASKER CERTIFIED SOLUTION
Avatar of maXXXeE
maXXXeE

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of maXXXeE
maXXXeE

Sorry, I meant DataList not listView
you can specify RepeatDirection="Horizontal" , for horizontal alignment of data
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial