I have javascript function return array like this :

 <script type="text/javascript">
        function looping() {
            var column_num = 1;
            var array = [];
            $("#columns ul").not("#column1").each(function() {

                var ulId = $(this).attr("id");
                var ulClass = $(this).attr("class");

                if (ulId != undefined && ulClass != undefined) {
                    var order = -1;
                    column_num++;
                    $("li", $(this)).each(function() {

                        var liId = $(this).attr("id");
                        var liClass = $(this).attr("class");
                        if (liId != undefined && liClass != undefined) {
                            order++;

                            var result = liId + "|" + liClass + "|" + column_num + "|" + order;

                            array.push(result);

                            //alert(array[0]);

                        }
                    });
                }
            });
            return array;
        }

    </script>

How can i retrieve the result in another array in my code behind .cs in button click event?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Store the array in a hidden field <input type="hidden" name="hidfld" id="hidfld" /> inside your form.

document.getElementById("hidfld").value = array;

On the serverside, use the hidden field's name to retrieve the array

link|improve this answer
How to store array in hidden field ? – just_name Feb 21 at 11:49
document.getElementById("hidfld").value = array; – Sunil Kumar B M Feb 21 at 11:51
hmmmm, i wanna to execute this function in specific event . this will return old version – just_name Feb 21 at 11:57
what is old version?? – Sunil Kumar B M Feb 21 at 12:00
I mean , i need this function to execute in the event handler of exit button , because the function will return different result during this period. – just_name Feb 21 at 12:06
show 1 more comment
feedback

The only way i see is send result using POST or GET AJAX request.

 $.get("/server/page.aspx", {  looping: looping() });

On ServerSide do:

 var array = Request.Params["looping"];
link|improve this answer
1  
more details ....? – just_name Feb 21 at 11:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.