i have a threaded posting using MS FrontPage. for the POST, i use this javascript (in the <head> tag:
<SCRIPT language=JavaScript >
function SecureIt(){
if (document.referrer.indexOf("post_logon_prod.asp") == -1) {
// Not coming from correct page... redirect to logon display.
self.location = "post_logon_prod.asp"}
}
</SCRIPT>
then i add "onload="SecureIt()" insid the <BODY> tag.
when i test it (by clicking on the "POST" button, it redirect me to the Post_logo_prod.asp. However, i check the thread posting a couple hours later; i still got some junk posting. Does the script above only prevent human poster; not auto poster (machine generated)?
any help is appreciated.

|