Re: Absolute path of web file by Ray
Ray
Tue Jul 08 12:18:19 CDT 2003
Where are you running this code? Client side or server side? I've never
seen "file not found" returned in a browser. Page not found, yes. File not
found is more like server side error. If this is client side, just do
document.open("/help/adjustment.htm"). If you start with /, that will start
at the root of the site regardless of from where this is called.
Ray at work
"AlexB" <abrambila@fresno.ca.gov> wrote in message
news:0b9e01c34571$e401a580$a001280a@phx.gbl...
> Anyone know how to determine the absolute path of an .html
> file?
>
> I'm getting a "file not found" error on the following line
> of code:
>
> document.open("Help/Adjustment.htm")
>
> Thanks.