Authorizenet.x_login

Version: - string  

Summary

Returns string of login ID.

Settings

The value is based on API login ID field of payment admin in MC>Ecommerce>Orders>Payment.

Examples

Outputting the template tag

@GetString("Authorizenet.x_login")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Authorizenet.x_login"); }

Outputting the template tag

<!--@Authorizenet.x_login-->

Check if string has a value

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