File System path to URL
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
If I have an absolute path to a file, e.g.: C:\website.com\assets\images\lumpydog.jpg How can I translate the address to it's absolute web form? e.g.: http://localhost/website.com/assets/images/lumpydog.jpg Can asp.net somehow resolve this path for me?
/\ |_ E X E GG
-
If I have an absolute path to a file, e.g.: C:\website.com\assets\images\lumpydog.jpg How can I translate the address to it's absolute web form? e.g.: http://localhost/website.com/assets/images/lumpydog.jpg Can asp.net somehow resolve this path for me?
/\ |_ E X E GG
Request.Path + "/assets/images/lumpydog.jpg"
Parwej Ahamad g.parwez@gmail.com