Authorizenet.x_exp_date

Version: - string  

Summary

Returns credit card expiration date. 

Settings

The value is based on date input by user during checkout.

Examples

Outputting the template tag

@GetString("Authorizenet.x_exp_date")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Authorizenet.x_exp_date-->

Check if string has a value

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