Forum:LastActiveThread.Body.Resume

Version: - string  

Summary

Returns body text within last active thread.

Settings

The value is based on the Text field for the forum message.

Examples

Outputting the template tag

@GetString("Forum:LastActiveThread.Body.Resume")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Forum:LastActiveThread.Body.Resume"); }

Outputting the template tag

<!--@Forum:LastActiveThread.Body.Resume-->

Check if string has a value

<!--@If Defined(@Forum:LastActiveThread.Body.Resume)--> Let's output this tag here: <strong><!--@Forum:LastActiveThread.Body.Resume--></strong> <!--@EndIf(@Forum:LastActiveThread.Body.Resume)-->