Hey, thanks for the reply! Sorry it took so long for me to reply.
First of all,
1. We're using VB in ASP.net.
2. The MySQL data we need to display are strings, numbers, dates and images.
Well, what I mean is I'd like to
display data from a MySQL table on a web page in an HTML element, let's say a paragraph tag, <p></p> inside a DIV.
We're already
able to display that MySQL data
in a ASP label, textbox, textfields, etc, since it's easy to do so, you just have to write something like:
Code:
labelName.text = string
Now, what we're having
trouble doing is how to put that data
in an HTML element not an ASP one.
But I have another question before I start any new coding, just wanted to know advance
if ASP labels, textboxes, textfields, etc must be fixed-length.
If it does then it'll be ugly if we
don't know the length of the MySQL data.
And sorry for switching back between "I" and "we", I'm in my final year doing our final project in a team of 4.