반응형
aspx.cs 페이지에서 버튼을 클릭하면 팝업창을 띄울려고
Response.Write("<script>window.open('/keyword/manage_keyword_regi.aspx','rsv','width=590,
height=650, left=524, top=268');</script>");
코드를 작성했는데 애러가 났다.
런타임 오류가 발생했습니다.
...
...
오류 : Sys.WebForms.PageRequestManagerParserErrorException: 서버에서 받은 메시지를 구문 분석할 수 없습니다. 이 오류는 Response.Write() 호출에 의해 응답이 수정되거나 응답 필터, HttpModule 또는 서버 추적이 활성화된 경우에 발생할 수 있습니다.
세부 정보 : '<script>window.open('부근을 구문 분석하는 동안 오류가 발생했습니다.
ㅇwindow.open 사용시 나타나는 애러로 해결 방법 검색결과
Response.Write("<script>window.open('/keyword/manage_keyword_regi.aspx','rsv','width=590,
height=650, left=524, top=268');</script>");
코드를 작성했는데 애러가 났다.
런타임 오류가 발생했습니다.
...
...
오류 : Sys.WebForms.PageRequestManagerParserErrorException: 서버에서 받은 메시지를 구문 분석할 수 없습니다. 이 오류는 Response.Write() 호출에 의해 응답이 수정되거나 응답 필터, HttpModule 또는 서버 추적이 활성화된 경우에 발생할 수 있습니다.
세부 정보 : '<script>window.open('부근을 구문 분석하는 동안 오류가 발생했습니다.
ㅇwindow.open 사용시 나타나는 애러로 해결 방법 검색결과
ScriptManager.RegisterStartupScript(this.Page , this.GetType() , "_open_" , "window.open('/keyword/manage_keyword_regi.aspx','rsv','width=590, height=650, left=524, top=268');" , true);출처 :http://www.taeyo.pe.kr/Forum/Content.aspx?SEQ=30406&TBL=ASPNET&PGN=1
끝~
반응형
'ASP.NET' 카테고리의 다른 글
ajax UpdatePanel 안에 FileUpload 사용하기 (2) | 2012.09.25 |
---|---|
'System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' 어셈블리에서 'System.ServiceModel.Activation.HttpModule' (0) | 2012.06.13 |
그리드뷰의 Row행 색상 비교 (0) | 2011.09.15 |
여러사람의 이름을 입력해서 검색결과 얻기 (ex 홍길동1,홍길동2,홍길동3) (0) | 2011.07.22 |
HTML 태그 적용된 텍스트 박스 만들기 (0) | 2011.07.13 |
Comments