'iis 405 erroe 나올때 url 을 post 방식으로 넘겨서 인식 못할때'에 해당되는 글 1건

  1. 2009.11.10 iis 405 erroe 나올때 url 을 post 방식으로 넘겨서 인식 못할때
반응형

넘기는 url 이 post 방식을때 iis 405 에러가 나온다.
간단하게 method=get 로 변경하면 되지만 열리는 페이지에 쓸모없는 값들이 보인다.
이럴때는 그냥 맘편하게 원도우 오픈을 이용해서 하면 간단히 해결할수있다.

function linkSite(obj) {
 
 var f  = obj; 

 if(f.selSite.value == ""){
  alert("이동할 싸이트를 선택해 주세요.");
        return false;
 }else{ 
  //f.target ="_blank";    
  //f.action = obj.selSite.value;
  window.open(f.selSite.value, "", "width=950, height=650, menubar=yes, toolbar=yes,  location=yes, scrollbars=yes, resizable=yes ");
         //return true;
  return false;
 } 
 

Posted by 1010