I show a message on the asp label when the user is successfully saved. I want to add a bullet to the top of the message. So, I tried the following code, but it did not help me.
lblSuccessMsg.Text = BulletStyle.Disc + "'" + obj.record + "saved successfully.";
message output:
Record saved successfully.
How can I do the same with C #.
source
share