Ecom:Cart.Shippingmethod.Error

Version: - string  

Summary

Returns an error message when the shipping provider returns an error.
E.g. the USPS shipping provider could return this message: "First Class mail must weigh 13 ounces or less".

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:Cart.Shippingmethod.Error")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Cart.Shippingmethod.Error"); }

Outputting the template tag

<!--@Ecom:Cart.Shippingmethod.Error-->

Check if string has a value

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