Click here to Skip to main content
15,904,497 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
hai, I created a webform and a table. which tool i have to use to display that data when i run the web form in browser

What I have tried:

i hav'nt tried anything yet. I'm in a dilemma which one to use. Data should be displayed in an attractive manner over webform, with data running bottom -top direction like we do in HTML marquee
Posted
Updated 2-Feb-17 18:57pm

you can use gridview which displays data in grid form. It can also has paging, edit options, sorting. It is very good for your situation.
 
Share this answer
 
You can use the same HTML marquee with direction=up
HTML
<marquee direction="up">This text will scroll from bottom to up</marquee>

Reference: HTML Marquees[^]

You can bind the content of the marquee by placing a Literal control and binding it in Page_Load() event. There are other databound elements like FormView etc. which you can use to bind the content of the marquee too.
The above suggestion is when you want to bind a single item. If you have multiple items to show inside the marquee then you can use Repeater control wrapped by the marquee tag pairs.

Reference: Marquee with repeater control with data fetched from SQLDatabase[^]

Try this approach and let me know if there is any difficulties implementing this or if your requirement is something else.

Hope, it helps :)
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900