
A simple thing that I sometimes get asked is how to control the labels of the web client controls. Well the label text is rendered as HTML so you can add HTML tags directly in line with the text.
To create a label that spans multiple lines, you can set up your label text like “My first line<br>My Second line”
Simple.
…and this:
myLabel.Text = “I am the biggest text!“;
Fun! ;-p