日期:2014-05-17  浏览次数:20490 次

js怎么取服务器端控件并赋值
一个asp控件,
 <asp:Label ID="softid"  runat="server"></asp:Label>
,js取得此控件并赋值我是这样做的:
        function SelectSoftModule()//showMode
        {
            url = "SoftwareVersionSubModuleSelect.aspx?Softid='123'";
            var select = window.showModalDialog(url, null, "dialogHeight:550px;dialogWidth=1000px;scroll:yes");
            if (select != null) {
             document.getElementById("<%=softid.ClientID %>").value=select;

             }

        }
其中select返回来的是一个字符串。那里出错啦?求解答
js asp 服务器 控件

------解决方案--------------------
document.getElementById("<%=softid.ClientID %>").innerHTML=select;