Authorizenet.x_invoice_num

Version: - string  

Summary

Returns number of the order.

Settings

The value is defined by DW system.

Examples

Outputting the template tag

@GetString("Authorizenet.x_invoice_num")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Authorizenet.x_invoice_num-->

Check if string has a value

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