//부모창<script language=javascript>
<!--
function winopen(){
var urlLink = "test01.jsp";
condeptWin = window.open(urlLink, 'test', 'status=no, scrollbars=no');
condeptWin.focus();
}
//-->
</script>
<html>
<head>
</head>
<body >
<form name=frm>
<table id=table1>
<tr class=whiteTR>
<td>
<input type=text name=test_select_index value=''>
</td>
<td>
<img src='../../images/button/btn_ok.gif' style='cursor:hand' onclick='winopen();'>
</td>
</tr>
</table>
</form>
</body>
</html>
//자식창
<script language=javascript>
<!--
function clean(obj){
if(obj.value==1){
opener.frm.test_select_index.outerHTML = "<input type=text name=test_select_index value='1번 check box
선택'>";
} else {
opener.frm.test_select_index.outerHTML = "<input type=text name=test_select_index value='2번 check box
선택'>";
}
}
//-->
</script>
<html>
<head>
</head>
<body>
<form name=frm>
<table id=table1 border=1>
<tr>
<td>
<input type=radio name=chk1 onclick='clean(this);' value='1'>
<input type=radio name=chk1 onclick='clean(this);' value='2'>
</td>
</tr>
</table>
</form>
</body>
</html>
-----:::::::::::::::::::::::::-=0-----------------
자식창에서 부모창의 서버컨트롤에 접근할때...
form1.부모창의 컨트롤의 네이스페이스를 포함한 아이디를 적어야 된다.속성 = 값;
//프로그램을 짜는 방법은 여러 가지가 있겠지만..
위에 님이 말씀 하신 것처럼 index 배열을 사용하셔두 좋구요..
저처럼 outerHTML을 사용하셔서 컨트롤 해 주셔도 됩니다.
어떻게든 원하는 모양을 만들면 되는거죠.ㅎㅎ
즐프하세요
'ASP.NET' 카테고리의 다른 글
메일타입변경 (0) | 2004.11.05 |
---|---|
첨부파일 저장 (0) | 2004.11.05 |
웹에서 활용할수 있는 셈네일 클래스 입니다. (0) | 2004.11.05 |
ascx 에서 자바스크립트로 컨트롤 찾는 함수 495 (0) | 2004.10.01 |
비주얼소스세이프( VSS6.0 ) .NET에서의 사용법 및 환경설정방법입니다. (0) | 2004.10.01 |