OMC:Notification.Visitor.ISP

Version: - string  

Summary

Returns ISP of visitor.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("OMC:Notification.Visitor.ISP")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("OMC:Notification.Visitor.ISP"); }

Outputting the template tag

<!--@OMC:Notification.Visitor.ISP-->

Check if string has a value

<!--@If Defined(@OMC:Notification.Visitor.ISP)--> Let's output this tag here: <strong><!--@OMC:Notification.Visitor.ISP--></strong> <!--@EndIf(@OMC:Notification.Visitor.ISP)-->