Authorizenet.x_ship_to_last_name

Version: - string  

Summary

Returns last name of shipping.

Settings

The value can be based on Last Name field of shipping section the cart .

Examples

Outputting the template tag

@GetString("Authorizenet.x_ship_to_last_name")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Authorizenet.x_ship_to_last_name-->

Check if string has a value

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