제목 : 감사합니다. 문제 해결하였습니다.
    
    
        
            
                | 
                    글번호:
                 | 
                
                 | 
                
                    629
                 | 
            
            
                | 
                    작성자:
                 | 
                
                 | 
                
                    
                        배기석
                        
                        
                    
                 | 
            
            
                | 
                    작성일:
                 | 
                
                 | 
                
                    
                        2007/07/10 오후 6:32:00 
                    
                 | 
            
            
            
                | 
                    조회수:
                 | 
                
                 | 
                
                    
                        4549
                    
                 | 
            
            
        
     
 
    
	
	
    
	아래와 같이 하니까 됩니다.
도움주셔서 감사합니다.
        StringBuilder sb = new StringBuilder();
        sb.Append("<script>");
        sb.Append("var a = opener.document.getElementById('ctl00_ContentPlaceHolder1_txtID');");
        sb.Append("a.value = ");
        //sb.Append("opener.document.form1.TextBox1.value = ");
        sb.Append("\""+this.txtChkID.Text + "\";");
        sb.Append("self.close();");
        sb.Append("</script>");
        Response.Write(sb.ToString());