i need to display the list one by one in the same line.
It mean instead of binding the value in the row i need bind it in new column first row value. Is that any control available to view the item horizontally .
i have my data in data table.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m not sure if I understand your question correctly but I think what you want to use is a repeater. This way you can use whatever markup you want in the itemtemplate to determine what the layout of your data is when it is displayed to the user. You could do something as simple as <%#Eval(“WhatEver”)%> and you would get horizontally repeating values of the WhatEver column.