Thanks for all of your inputs. I actually wound up doing this:
********************
demo_verify_javascript.cfm
<noscript>
<cfoutput>
<meta http-equiv="refresh" content="0; URL=error_javascript.cfm">
</cfoutput>
</noscript>
********************
********************
demo_verify_java.cfm
<script language = "javascript">
document.write("navigator.javaEnabled(): <B>" + navigator.javaEnabled() +
"</B><BR>");
if (navigator.javaEnabled() == "0")
{
location = "error_java.cfm"
}
</script>
********************
then <cfincluded> them on the pages that need to test for this stuff,
does anyone forsee a problem doing it this way? One thing is that each page
that needs java, also needs javascript, so if they have them both disabled
then they will get redirected to the javascript page
------------------------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message
with 'unsubscribe' in the body to [EMAIL PROTECTED]