well, yes.<br /><br />Use "Specify Item Values" in the bindings tab in the object window. If you want to add items by JS use something like this:<br /><br />var countries = new Array("Belgium", "France", "Norway");<br />var countrycodes = new Array("BE", "F", "NO");<br /><br />//Please note that both variables MUST be strings, not numbers etc. <br />//If you want to use numbers/dates, convert them to strings before<br />//the addItem method. E.g. var myVar = String(19);<br /><br />for(i=0;i<countries.length;i++){<br />DropDownList.additem(countries[i], countrycodes[i]);<br />}<br /><br />best regards,<br />Håkon