日期:2014-05-17 浏览次数:20490 次
<asp:Label ID="softid" runat="server"></asp:Label>,js取得此控件并赋值我是这样做的:
function SelectSoftModule()//showMode其中select返回来的是一个字符串。那里出错啦?求解答
{
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;
}
}