티스토리 툴바



2009/07/15 15:59

[CSS] Body에 대한 스타일 정의


<style type="text/css">
Html, body {
Overflow:auto;
margin:0;
padding:0;
color:#000;
}
</style>

Overflow:auto;
스크롤바의 초기 출력 여부를 설정할 수 있다. auto인 경우 내부 페이지가 출력창보다 작으면 스크롤바가 표시되지 않는다.

margin:0;
padding:0;
내부 페이지의 기본 여백을 모두 없앤다.
크리에이티브 커먼즈 라이선스
Creative Commons License
Trackback 0 Comment 0
2009/07/14 16:35

[Flash] 전체 무비 크기 및 좌상단 좌표 계산

this.root.stage.stageHeight
this.root.stage.stageWidth

Scene에서
x축 원점 좌표 = -(this.root.stage.stageWidth-[Document Properties 상의 Dimension;Width])/2;    
y축 원점 좌표 = -(this.root.stage.stageHeight-[Document Properties 상의 Dimension;Width])/2;   

MovieClip내에서
x축 원점 좌표 = -(this.root.stage.stageWidth/2 - this.x + this.width/2);
y축 원점 좌표 = -(this.root.stage.stageHeight/2 - this.y + this.height/2);


크리에이티브 커먼즈 라이선스
Creative Commons License
Trackback 0 Comment 0
2009/03/12 12:42

[ASP] 부모 경로의 파일에 접근할 경우 내부 오류를 일으킨다.

<!-- #include file = "../inc/strConn.asp" -->
이나
Response.Redirect "../index.asp"
와 같은 구문을 사용할 때 ASP error 0131 - "Disallowed Parent Path" 에러가 발생한다면..


http://support.microsoft.com/kb/332117

IIS 6.0에서는 기본적으로 부모 폴더의 사용이 불가능하도록 설정되어 있다.

속성 -> 홈 디렉토리 탭 -> 구성 버튼 -> 옵션 탭 -> 부모 경로 사용 체크


크리에이티브 커먼즈 라이선스
Creative Commons License
Trackback 0 Comment 0