<select size="4" name="ListBox1" multiple="multiple" id="ListBox1">
要在页面post 和get时候 把 select 的数据传送过去.需要把数据选上.
var list= document.getElementById("ListBox1");
for(var i=0;i<list.options.length;i++)
{
list.options[i].selected=true;
}