Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Redirection problems

  • 30-08-2000 1:22pm
    #1
    Registered Users, Registered Users 2 Posts: 310 ✭✭


    I currently have a html page that when accessed redirects a user to a another page.
    The problem is that when a user tries to go back through their history they cannot get past the redirection page. This is quite confusing to users. The only way I can think of getting around this is to check from which page the user is coming from and take appropriate action based on that but the history object only has one property and that is the length property.
    I enclose the code I am using.
    This code works fine.
    Any help apprec.

    [code]
    <html>
    <head>
    <TITLE>Redirection Page</TITLE>

    </HEAD>
    <script language="JavaScript">
    <!--
    function redirect()
    { top.location="http://ipaddress/index.asp";

    }
    //-->
    </script>

    <BODY onLoad="redirect();">

    <P> </P>

    <SCRIPT LANGUAGE="JavaScript">
    <!--
    //For IE
    if (document.all) {
    redirect();
    }
    //-->
    </SCRIPT>
    </BODY>
    </HTML>


Comments

  • Registered Users, Registered Users 2 Posts: 310 ✭✭Cerberus


    I found a way but I don't understand how it works.
    &lt;HTML&gt;
    &lt;HEAD&gt;
    &lt;META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0"&gt;
    &lt;TITLE&gt;Redirection Page&lt;/TITLE&gt;
    
    &lt;/HEAD&gt;
    &lt;script language="JavaScript"&gt;
    &lt;!--
    if (document.images)
        location.replace('http://www.somewhere.com/index.asp');
    else
        location.href = 'http://www.somewhere.com/index.asp';
    //--&gt;
    &lt;/script&gt;
    		
    &lt;BODY&gt;
    &lt;/BODY&gt;
    &lt;/HTML&gt;
    


  • Registered Users, Registered Users 2 Posts: 1,176 ✭✭✭podgeen


    christ above u know stuff..
    what happened u up in dublin...


Advertisement