Drive dilemma

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Monica

    Drive dilemma

    Here is my situation: I have a .war file that calls an index.html file
    from a shared directory. That works great, but unfortunately the c:
    drive on my server is running low on space, so the server admin wants
    my shared directories to be moved to the d: drive. I have modified the
    index.html file on the c: drive being accessed by my .war file to load
    another index.html file on the d: drive, but it is not working. I have
    tried

    <BODY onLoad="documen t.location.href ='d:\index.html '">

    and

    <SCRIPT LANGUAGE="JavaS cript"><!--
    function go_now () {
    location.href = "D:/index.html";
    }//-->
    </SCRIPT></HEAD>
    <BODY onLoad="go_now ()">

    Any ideas? Thanks!

Working...