Verification if a visitor has cookieses enabled, and if not ask the visitor enable.
<%
if request.servervariables("HTTP_COOKIE")="" then
response.write "Enable cookies to display this web correctly"
response.end
end if
response.write "Wellcome..."
%>