I want to add an element-style to the text and value in a viewbag. How would I go about this?
This is is the code
ViewBag.Title = "Order No:" + " " + Model.OrderID;
and what I want to do is make it bold on the view screen. So it should come out like this for example: Order No: 5.
I normally add styles to the tags to bold the text, but in this case I'm completely clueless on what to do.