Announcement
Collapse
No announcement yet.
AppPath in PBCGI.INC using IIS/6.0 returns \\?\
Collapse
X
-
I see the same thing (I'm also using IIS 6).
I use the kludge method.
Leave a comment:
-
AppPath in PBCGI.INC using IIS/6.0 returns \\?\
Microsoft's server returns the 4 extra characters above before the path.
Not sure if this is common in all versions of Microsoft servers.
Is there a common function to test for this?
Abyss correctly returns the path.
Kludge: can't use 4 characters in this posting
Code:LOCAL ThePath AS STRING ThePath = AppPath IF LEFT$(ThePath,4) = "those 4 characters" THEN ThePath = MID$(ThePath,5) END IF
Last edited by Mike Doty; 2 May 2009, 08:11 PM.Tags: None
Leave a comment: