我有一个函数,我试图获取用户输入的用户名和密码。它存储在客户端的“unixName”和“unixPass”中。我有 dUnixName 和 dUnixPass,其中一个是隐藏输入,另一个是标签。它们是不同的,因为我在玩弄不同的方法来让它发挥作用。
<script type="text/javascript">
// Internet Explorer/Firefox needs this script to show radio selection after Modal Popup
function enableRDO() {
document.getElementById("rdoUnix").checked = true;
// document.getElementById("dUnixName").value = document.getElementById("unixName").value;
//document.getElementById("dUnixPass").value = document.getElementById("unixPass").value;
document.getElementById('<%=dUnixName.ClientID %>').value = document.getElementById("unixName").value;
document.getElementById('<%=dUnixPass.ClientID %>').value = document.getElementById("unixPass").value;
return true;
};