Name

Version: - string  

Summary

Returns the name/heading that the visitor has submitted with the comment.

Settings

The value is based on the Name field for the comment.

(Frontend comments form or Modules tab > News > Category > News > Content > Comments > Comment > Name)

Examples

Outputting the template tag

@GetString("Name")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Name"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Name"); }

Outputting the template tag

<!--@Name-->

Check if string has a value

<!--@If Defined(@Name)--> Let's output this tag here: <strong><!--@Name--></strong> <!--@EndIf(@Name)-->