DwPageManagerFax

Version: - string  

Summary

Returns the fax number of the page manager of the current page.

Settings

The value is based on the Telefax input field in the Information section for the user.

(Users > Group/User > Information tab > Information panel > Telefax)

Examples

Outputting the template tag

@GetString("DwPageManagerFax")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@DwPageManagerFax-->

Check if string has a value

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