I never saw ASP code like this:
<%@ import Namespace="Acme" %>
But if you have a field name called ACME on a form and are now on a page receiving the post and want to show the value of the field:
<%= Request.Form("ACME") %>
Or
<%
Response.Write Request.Form("ACME")
%>
Hope this helps.