ASP label control

  • Thread starter Thread starter rodney
  • Start date Start date
R

rodney

guys

I am trying to add multiple lines of text to a label
control.Each line of text should be on a newline.
But when I add/append the text to the label I can only
see the first line.

I havbe tried using Environment.Newline,"\n",<ol>,<br>
nothing works

How could i possibly do this

thanks
 
Use this
Replace(inStr, vbCrLf, "<br>")

and also make sure that you do not have the height and width set for the
label Control. If yuou are still not sure, do a view source on the
client and you will have a better idea.

Trevor Benedict R
MCSD

*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!
 
Back
Top