Click here to Skip to main content
16,016,643 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
string[] ppm1 = Directory.GetFiles(saveloc, "*.png", SearchOption.AllDirectories);
                ns.NumericComparer ns = new ns.NumericComparer();
                Array.Sort(ppm1, ns);

In this part of code am storing files location in an array.using break points i've checked that ppm1[] array has all the file names.
JavaScript
<script>
             var canvas = document.getElementById('myCanvas');
             var context = canvas.getContext('2d');
             var imageObj = new Image();

             imageObj.onload = function () {
                 context.drawImage(imageObj, 69, 50);
             };
            
             imageObj.src = "<% = ppm1[0] %>";
    </script> 

but in the aspx page inside the script it shows me ppm1[0] is null.how can i get the c# Arrays in javascript

how can i get the images path in the aspx page from c# code behind any code snippets,links or forums to resolve my problem.
thanks in advance.
Posted

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