Hi,
I would like to open a WebDAV window using a script but remove
navigation toolbars, etc so that the user cannot browse other folders
on my web server. I can open the webdav folder fine using the
following
<STYLE>
.hFolder{behavior:url(#default#httpFolder);}
</STYLE>
<SCRIPT>
function fnNavigate(){
var webfolder= "http://www.mydomain.com/userfolder"
var
sFolder=location.href.substring(0,location.href.lastIndexOf("/"));
oViewFolder.navigate(webfolder);
}
</SCRIPT>
<SPAN ID=oViewFolder
CLASS = "hFolder"
onclick = "fnNavigate()"
>
Click here to go to your Web Folder
</SPAN>
But the WebDAV window allows the user to navigate away from his folder
unrestricted and see others folders. I would like to restrict
navigation by turning off toolbars, etc not username/passwords, etc.
Any help would be appreciated