Forum:LastActiveThread.Created

Version: - string  

Summary

Returns the date stamp for when the last active thread was created.

Settings

The value is generated automatically.

Remarks

Available for ContentAppIndexProviders only with content has Forum module.

Examples

Outputting the template tag

@GetString("Forum:LastActiveThread.Created")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Forum:LastActiveThread.Created-->

Check if string has a value

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