====== <#error_btn_back_post_params> ====== When an error is encountered, this variable will contain the post params (in a form of a <#[[en:public:developer:template_system:tags:string:TStringList]]> object) of the "back" button if the <#[[en:public:developer:template_system:tags:error:error_btn_back_method]]> is equal to "POST". these params will be only available from the **/error/** page Note: Each items in the <#[[en:public:developer:template_system:tags:string:TStringList]]> will be [[en:public:developer:template_system:tags:parameters:xmlencode|xmlencoded]] ==== Example ==== <#error_message> <#if condition="'<#error_btn_back_url>' <> ''">
<#if condition="'<#error_btn_back_method>' = 'POST'">
<#for var="i" from="0" to="<#error_btn_back_post_params.count> - 1"> <#endfor>
<#htmlbutton template="button_4_1_2.html" href="javascript:void(0);" onclick="document.forms['ak_back_form'].submit(); return false;" caption="Previous"> <#else> <#htmlbutton template="button_4_1_2.html" href="<#error_btn_back_url>" caption="Previous"> <#endif> <#endif>