UNC path to File URI -
how convert unc path file uri.. application user give css unc path in test box :
\\egng4573\d$\css\style.css
how can change :
file:///d:/css/style.css
so firefox , ie both can access css desired path , apply on them.. please tell....
in .net,
let unc = @"\\egng4573\d$\css\style.css"
then
new system.uri(unc)
should it.
val : system.uri = file://egng4573/d$/css/style.css
Comments
Post a Comment