Umraco Razor Split String - Example Split Tags
In the example Below "tagging" is tags selected by the user:
INPUT:
@{
var words = @Model.tagging.Split(',');
<h2>My Heading</h2>
foreach (string word in words)
{
<p>
@word
</p>
}
}
INPUT:
CODE:
@{
var words = @Model.tagging.Split(',');
<h2>My Heading</h2>
foreach (string word in words)
{
<p>
@word
</p>
}
}
Comments
Post a Comment