How to display data

jamie_pattison

Well-known member
Joined
Sep 9, 2008
Messages
116
Programming Experience
Beginner
I have an app where user1 would log in send a message to the Support team. The Support personnel would then see it on their system and can send a reply back to them and so forth.

What control would be appropriate to display the conversation? I understand i could use a SQL Stored proc to order the conversation in a particular order but not entirely sure what control i could use for this purpose to display it user friendly?

Thanks
 
How many controls are there that can display text? Not that many so surely a little but of thought would turn up the most appropriate one. It pretty much comes down to a Label, a TextBox or a RichTextBox.
 
True, but i wouldnt have asked this question if i knew the answer now would i? Point was that i thought in case there were third party controls or a way that anyone else has done something similar, however the approach i took was to have a repeater with a table and insert a label within the cell which did the trick in case anyone needs to know.
 
Back
Top