In our ASP.NET application, we use this code:
Server.MapPath("/") = C:\myappsFolder\myapp\web\
But, how come Server.MapPath("/Token")
returns the following ?
Server.MapPath("/Token") = C:\myappsFolder\myOtherFolder\myapp\tkn
I would think Server.MapPath("/Token")
should return
C:\myappsFolder\myapp\web\Token
Thank you