Okay - first things first:
Code:
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
Just leave that alone, it's setting a few things to make sure everything displays and goes through the browser right.
For
Code:
var rootpath='\\\\server\\root_dir';
Wouldn't it be forward slashes? As far as I'm concerned, the backslash is only used to call some commands in some programming languages and to access files in Windows (forward of back works)... but not for this? Correct me if I'm wrong. Or maybe your site is hosted on a windows? But I dont really know how that works...
Code:
// What I really want to do is load the page into the bottom frame!
//window.parent.frames[1].location=fullURL
To access the parents frame you do:
Code:
self.parent.document
So in your case you would do:
Code:
self.parent.document.frames[1].location=fullURL
---
Code:
alert('I hope you see something here: ' + SIMPLETEST.DROPDOWN.value);
And
Code:
<form method="POST" action="--WEBBOT-SELF--" name="SIMPLETEST">
<p>SIMPLETEST: <select size="1" name="DROPDOWN" onChange='showit()'>
<option>DEMURE</option>
<option>SASSY</option>
</select></p>
</form>
Is it not easier to just give the select an ID and use document.getElementById?
Now, just to make everything clear to me: Can you type a detailed little paragraph on what exactly you need (pretend I am dumb, but I know the concept of what you're doing - if that makes sense)
Good luck!
Bookmarks