在选择多个框中保留值

时间:2011-10-28 09:47:02

标签: c# javascript asp.net html vb.net

我有一个javascript函数从选择多个框A移动,它从数据库填充到另一个多选框B,如果回发,我在B中从A移出的值丢失了。最初我想,因为我为服务器端操作包含了一个“runat =”服务器“”标签,但显然事实并非如此。我读到了关于Form.Request但是没有线索如何去做。我只需要在多个选择框B中保留这些值。请提出建议。感谢。

<% - 来回移动项目选择框 - %>

function move(sourceFrom, sourceTo) {
    var arrFrom = new Array();
    var arrTo = new Array();
    var arrLU = new Array();
    var i;
    for (i = 0; i < sourceTo.options.length; i++) {
        arrLU[sourceTo.options[i].text] = sourceTo.options[i].value;
        arrTo[i] = sourceTo.options[i].text;
    }
    var fLength = 0;
    var tLength = arrTo.length;
    for (i = 0; i < sourceFrom.options.length; i++) {
        arrLU[sourceFrom.options[i].text] = sourceFrom.options[i].value;
        if (sourceFrom.options[i].selected && sourceFrom.options[i].value != "") {
            arrTo[tLength] = sourceFrom.options[i].text;
            tLength++;
        } else {
            arrFrom[fLength] = sourceFrom.options[i].text;
            fLength++;
        }
    }

    sourceFrom.length = 0;
    sourceTo.length = 0;

    var ii;
    for (ii = 0; ii < arrFrom.length; ii++) {
        var no = new Option();
        no.value = arrLU[arrFrom[ii]];
        no.text = arrFrom[ii];
        sourceFrom[ii] = no;
    }

    for (ii = 0; ii < arrTo.length; ii++) {
        var no = new Option();
        no.value = arrLU[arrTo[ii]];
        no.text = arrTo[ii];
        sourceTo[ii] = no;
    }

    (sourceTo).focus();

    if (sourceTo == (document.getElementById('<%= outletFromBox.ClientID%>'))) {
        (sourceFrom).focus();
    }
    if (sourceTo == (document.getElementById('<%= QualMemTypeFromBox.ClientID %>'))) {
        (sourceFrom).focus();
    }
    if (sourceTo == (document.getElementById('MemStatusFromBox'))) {
        (sourceFrom).focus();
    }
}  
<select multiple size="8" style="width: 135px" runat="server" onblur="selectAll(this, true, document.getElementById('<%#uilblDestinationQualOutlet.ClientID%>'))"
                                        id="outletToBox">
                                    </select>

1 个答案:

答案 0 :(得分:0)

对ListBox的客户端更改不是服务器端持久化的,因此如果发生PostBack,所做的任何更改都将丢失;看看这个链接,看看你如何处理它:

http://www.vijaykodali.com/Blog/post/2007/12/14/Add-Delete-Items-in-DropDownList2c-ListBox-using-Javascript.aspx

如果您在使用该解决方案时遇到问题,请告诉我,并发布您的aspx页码...我们可以针对您的具体情况制定解决方案。