재우니의 블로그

 

WINDOWS 8, 8.1, 10 에서 IE 브라우저에 관리자권한으로 실행하게끔 체크하곤 한다.

하지만 이렇게 설정하고 나서 JAVASCRIPT 로 데이터를 POPUP 형태로 하여 POST  로 전송할 경우,

새창이 2개 정도 뜬다. 조그마한 새창이 JAVASCRIPT 의 window.open() 함수에 의해 뜬 사이즈 만큼의 브라우저가 뜨고,

그 안에서 다시 새창으로 떠서 원하는 action 페이지로 이동이 된다는 것이다.

이로 인해 새창이 두개 발생되어 세션이 끊기거나 새창이 두개 뜨는 관계로 문제가 많다.

이는 javascript 로 해결할게 아니라, 브라우저에서 속성을 통해 관리자 권한 체크를 풀어야 해결이 가능하다.

 

 

List.TotalDownLoad = function (_e) {
    var evt = new __event(_e);

    if (evt.target) {
        var arg = evt.target.getAttribute("arg");

        document.getElementById("fileList").value = arg;

        document.getElementById("frmTotalDownLoad").action = "/DeskPlusEIP/Common/DownLoad/TotalDownLoad.aspx";
        window.open("", "openWin", "width=506px,height=388px,scrollbars=no,status=no,toolbar=no,resizable=0,location=no,menu=no");

        this.target = "openWin";
        document.getElementById("frmTotalDownLoad").submit();
    }
}

 

 

<form id="frmTotalDownLoad" name="frmTotalDownLoad" method="post" target="openWin">
    <input type="hidden" name="fileList" id="fileList" />
    <iframe id="ifrmAttachFile" frameborder="0" width="0" height="0" scrolling="no" src="about:blank">
    </iframe>
</form>