Ecom:RMA.Customer.AccessUserID

Version: - string  

Summary

Returns value of AccessUserID field the RMA's customer. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:RMA.Customer.AccessUserID")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Ecom:RMA.Customer.AccessUserID-->

Check if string has a value

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