I want to \'echo\' a string separated by delimeters like: sergio|tapia|1999|10am
the Body of an HTML page.
How can I achieve this? Thank you!
In the new Razor syntax, you can just write @variable in your html and its value will be echoed:
@{ var name = 'Hiccup'; } Welcome @name
Welcome @name