Umraco Razor Split String - Example Split Tags

In the example Below "tagging" is tags selected by the user:

INPUT:

CODE:


@{
  
 var words @Model.tagging.Split(',');
  
  <h2>My Heading</h2>
  
  foreach (string word in words)
  {
   <p>
      @word
   </p>
  
  
  
}

OUTPUT:



Comments

Popular posts from this blog

Umbraco Razor Sort Nodes Ascending or Descending

Umbraco Razor get Querystring

Create a .NET Contact Form that Gets the Last Url Visited in C# Can also be Used in Umbraco