Click here to Skip to main content
15,867,834 members
Articles / Web Development / ASP.NET

How to Pass ASP.NET Server Side Array to Client Side and Binding them with HTML Element?

Rate me:
Please Sign up or sign in to vote.
4.95/5 (5 votes)
8 Jul 2010CPOL2 min read 64.4K   16   6
How to pass ASP.NET server side array to client side and binding them with HTML element

This is a frequent requirement for an ASP.NET developer to pass a server side array to client side and access them through JavaScript. There are several ways to do that. But here I am describing one of the simplest steps to pass server side array to client side. In this blog post, you will get to know two things, the first one is how to pass the array from server side to client side and the second one is how to bind that array to an empty “html dropdown” list.

Well, the easiest way to pass the server side array to a client side is by using “RegisterArrayDeclaration”. RegisterArrayDeclaration method registers a JavaScript array with the System.Web.UI.Page object. As the array object is registered with the “Page" object, we can access it from JavaScript easily. RegisterArrayDeclaration takes array name and value of the array element as arguments.

In the below example, I have registered one array with the name of “Skills”.

C#
protected void Page_Load(object sender, EventArgs e)
  {
     // Register List of Languages
      Page.ClientScript.RegisterArrayDeclaration("Skills", "'C#'");
      Page.ClientScript.RegisterArrayDeclaration("Skills", "'VB.NET'");
      Page.ClientScript.RegisterArrayDeclaration("Skills", "'C'");
      Page.ClientScript.RegisterArrayDeclaration("Skills", "'C++'");
  }

Now, what does the above declaration do? This is nothing but a declaration of a JavaScript array like:

JavaScript
Var Skills = new Array('C#', 'VB.NET','C','C++');

This “Skills” array is now only a JavaScript array which is easily accessible by client side code. Now let’s take a look at how to access them and how to bind them in a dropdown list.

In my form, I have an HTML select element and one HTML Button. I want my server side (which is now a client side) array to bind in the dropdown list.

XML
<select id="ddlNames" name="D1">
  </select><input id="BtnNameLoad" type="button"
  value="Load Name" onclick="return BtnNameLoad_onclick()" />

Image 1

Below is the code snippet for binding the array to HTML control:

JavaScript
function BtnNameLoad_onclick() {

            //Get The Control ID for the dropdown
            var listID = document.getElementById("ddlNames");
            //Check if the object is not null
            if (listID != null) {
                for (var i = 0; i < Skills.length; i++) {
                   // Create and Element Object of type "option"
                    var opt = document.createElement("option");
                    //Add the option element to the select item
                    listID.options.add(opt);
                    //Reading Element From Array
                    opt.text = Skills[i];
                }
            }
        }

In the above code snippet, I have read the skills name using Skills[i] which was actually registered from server side. Another interesting thing is to bind the array elements in “Select” item. As we all know, “Option” tag element is the placeholder for the select content. So I have created one “Option” element using “createElement”.

JavaScript
var opt = document.createElement("option");

This opt object is nothing but the placeholder for item of this “Select” element. So for every element, I have created an object for “option” element and added them into the actual list by reading the value from array.

You can also check the array elements that are registered through debugging:

Image 2

Below is the sample output:

Image 3

If you have any questions regarding this, please post your question in the comments section or use the contact us page to contact me.

Filed under: ASP.NET, C#
Image 4 Image 5 Image 6 Image 7 Image 8 Image 9

License

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


Written By
Technical Lead
India India
.NET Consultant | Former Microsoft MVP - ASP.NET | CodeProject MVP, Mentor, Insiders| Technology Evangelist | Author | Speaker | Geek | Blogger | Husband

Blog : http://abhijitjana.net
Web Site : http://dailydotnettips.com
Twitter : @AbhijitJana
My Kinect Book : Kinect for Windows SDK Programming Guide

Comments and Discussions

 
Generalyes sir Pin
Yves22-Sep-10 4:22
Yves22-Sep-10 4:22 
GeneralRe: yes sir Pin
Abhijit Jana22-Sep-10 10:58
professionalAbhijit Jana22-Sep-10 10:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.