Click here to Skip to main content
15,886,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can i access the image array of .cs to java scripts???

Suppose my .cs file is below:-
C#
String[] files = System.IO.Directory.GetFiles("d:\\picture");

There are 4 exist .jpg files.

I want to that image array of .cs file to access from .js file.
How will i solve above problem?????

Please help me anybody...
Posted
Updated 3-Oct-12 2:35am
v2

1 solution

You probably can't - or if you can, it is likely to be a major security risk.
The problem is that the C# code is executed on the Server, while the JS code is run on the Client.
This means that the paths of the files that the C~ code returns are an absolute path to an hard drive on the Server. If the JS code has access to that path, then so does everybody else in the world, without having to go via your web site. Not a good idea!

I don't know what you are tying to do, that you think that would be a good idea, but I think you need to reconsider how your site is going to work before you continue down this road.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900