url
ASP.NET
3
Posts
3
Posters
0
Views
1
Watching
-
hi how to convert the system path into browser path (or) how to replace \ with / in system path venkat
you should use Server.MapPath Method[^] If you just want to replace \ with / :
string path = systemPath.Replace("\\","/");
Hesham A. Amin My blog
-
hi how to convert the system path into browser path (or) how to replace \ with / in system path venkat
venky456 wrote:
how to replace \ with / in system path
string Answer = @"\".Replace(@"\","/");