ユーザーが入力したユーザー名とパスワードを取得しようとしている関数があります。クライアント側の「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;
};