To customise a contact form error page, it should be a php page (you
can also use asp, asp.net, jsp or any other language you are familar
with).
To display the error message(s), add the following code:
<?php
$errors = urldecode($_GET['Errors']);
echo $errors;
?>
into your page. This can be placed anywhere in your design and will show the errors returned from Interspire Email Marketer in the right place.
If you are using asp for the error page you could use
<%@ language="VBScript" %>
<%
Response.Write Request.QueryString("Errors")
%>
to display the error.

The article has been updated successfully.