G
Guest
I'm getting the file path via webservice using following code:-
FileInfo fInfo = new FileInfo(filename);
return fInfo.FullName;
the return file backed as C:\test\images\1.jpg
in application side .aspx.cs file i stored the returned path in public
variable to read it from javascript function , when read the filename in js
function as follows
<%= sFileName %> the path trim and be c:test
why? and what can I do to solve this problem?
FileInfo fInfo = new FileInfo(filename);
return fInfo.FullName;
the return file backed as C:\test\images\1.jpg
in application side .aspx.cs file i stored the returned path in public
variable to read it from javascript function , when read the filename in js
function as follows
<%= sFileName %> the path trim and be c:test
why? and what can I do to solve this problem?