Hi all,
I have created a virtual directory in IIS "First" mapped to \\Machine1\C\Dir1. Within First I created another virtual directory "Second" mapped to \\Machine2\C\Dir1.
When i tried the following
Response.write(Server.Mappath("/First") + "<BR>")
Response.write(Server.Mappath("/Second"))
I got the following result
The path of the first virtual directory "First" was displayed. However for the virtual directory "Second" it gave me an error.

How does one access the virtual directory "Second"?
Also what sense does it make in having one virtual directory within another?