I have a label in my Webform. I want to wrap its text, so that it will automatically linebreak after a particular width in pixels.
The text for the label is coming from the database
Label lblU = new Label();
lblU.ID = "LabelU" + i.ToString();
lblU.Text = ds.Tables[0].Rows[i][0].ToString() + " : ";
There's no property like Autoresize or MaximumWidth, do I need some assembly references or something?