Field.HtmlId

Version: - string  

Summary

Returns an ID that can be used as ID attribute.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Field.HtmlId")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Field.HtmlId"); }

Outputting the template tag

<!--@Field.HtmlId-->

Check if string has a value

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