Ecom:RMA.OrderID

Version: - string  

Summary

Returns ID of an order the RMA's is based on. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:RMA.OrderID")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:RMA.OrderID"); }

Outputting the template tag

<!--@Ecom:RMA.OrderID-->

Check if string has a value

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