반응형

ASP 6

iis7 64bit 에서 32bit 응용프로그램 사용시 html asp 매핑 사용하기

iis7에서 html 매핑을 위해서 처리기 매핑 에서 스크립트 매핑추가 요청경로 .html 입력 실행파일 %windir%\system32\inetsrv\asp.dll 혹은 C:\windows\system32\inetsrv\asp.dll 입력 이름 알기쉽게 입력 ex) html ASP 요청제한클릭 매핑 체크박스 체크 동사 > 다음동사중 하나 사용 , GET,HEAD,POST 입력 엑세스 스크립트 선택 이렇게 iis에서 적용 해줍니다. 그러면 web.config 파일에 아래와 같이 적용이 됩니다. handlers 부분에 를 추가 해주면 됩니다. 이렇게 되겠죠. C:\windows\system32\inetsrv\asp.dll 로 써주던 %windir%\system32\inetsrv\asp.dll 로 써주던 적..

IIS HTTP Err Log 중 Connection_Dropped 오류

HTTP 에러 로그 중 Connection_Dropped는 자칫 IIS서버 문제로 인식하여 서버에 중점을 두고 튜닝을 하는 경우가 많다. 이 경우는 클라이언트 문제다. Connection_Dropped The connection between the client and the server was closed before the server could send its final response packet. The most common cause of this behavior is that the client prematurely closes its connection to the server. 서버가 최종 응답 패킷을 전송하기 전에 클라이언트와 서버 간 연결이 닫혔습니다. 이 동작의 가장 일반적인 원인은..

base64.dll + 자동테이블 명세서 출력 + Copy Handler

1. Base64로 인코딩해서 넘길 필요하가 있을 때, 디코딩하고 싶을 때 * 인코딩 Set objEncode = Server.CreateObject("Base64Lib.Base64") strEncodeData = objEncode.Encode(strContents) Set objEncode = Nothing Response.Write strEncodeData * 디코딩 Set objDecode = Server.CreateObject("Base64Lib.Base64") strDecodeData = objDecode.Decode(strContents) Set objDecode = Nothing Response.Write strDecodeData 2. 테이블 내역서 명세표 작성이 짜증날 때 ASP로 출력해주..

페이지 내 로딩중 설정

로딩중입니다. waiting.htm 페이지에는 단순히 화면에 로딩를 표시할 내용이 들어갑니다. 물런 '로딩중입니다.' 텍스트 대신 이미지로 대체해도 됩니다. 다음은 실제 화면로딩창을 띄우는 페이지입니다. 위 소스에는 로딩창을 띄우는 함수와 닫는 함수로 구성되어져 있습니다. 실제 페이지에 적용하기위해서는 페이지 상단에 show_wating() 함수를 호출하고 페이지가 로드된후 발생하는 이벤트인 onload 에 close_wating() 함수를 호출 하시면 됩니다. 출처 : http://www.mungchung.com/mianamssi/ (뭉충닷컴)

반응형