where is this 数组 from? client side? if yes, assign the value to a hidden control after joining the elements using javascript:<form id=form1 runat=server>
<input type=hidden id=hid runat=server>
...
</form><script language=Javascript>
//....
a = new Array(0,1,2,3,4);
document.form1.hid.value = a.join("|");
</script>on the server side, dostring[] s = hid.Value.Split('|');