Authorizenet.x_action

Version: - string  

Summary

Returns URL to action DLL file. 

Settings

The value looks like https://test.authorize.net/gateway/transact.dll for the provider in test mode .

Examples

Outputting the template tag

@GetString("Authorizenet.x_action")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Authorizenet.x_action-->

Check if string has a value

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