Response.Cache.SetExpires(DateTime.Now.AddSeconds(0)); Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.Cache.SetValidUntilExpires(true); Response.Cache.SetNoServerCaching(); 브라우져의 페이지가 자주 바뀌는 페이지는 브라우져 캐쉬를 무효화 해야할 경우가 생긴다. 이런 때에는 Page_Load 부분에 위와 같은 구문을 넣어보자..
Out-of-process Mode Included with the .NET SDK is a Windows® NT service: ASPState. This Windows service is what ASP.NET uses for out-of-process session state management. To use this state manager, you first need to start the service. To start the service, open a command prompt and type: Copy Codenet start aspstate What you'll see is: Figure 1. Starting the Windows NT service ASPState at the comm..
링크를 클릭하게 되면 링크 주변에 점선이 생기게되죠. 물론 그대로 두는 것이 웹표준 접근성에 맞겠지만 모양을 중요시하는 경향이 국내에선 많기 때문에 링크에는 항상 onclick 이벤트에 this.blur() 자바스크립트를 이용해서 링크에 점선이 생기는걸 막고는 했죠. 이를 한번에 해결하려면 a 테그의 스타일을 정의할 때 아래와 같은 한줄을 넣어주시면 됩니다. ^ ^ a { selector-dummy: expression(this.hideFocus=true;} 상당히 간단하고 쉽게 링크의 점선을 없앨 수 있겠죠? ^ ^ 많이 활용하자고용~
제2차 태터캠프가 오는 5월 26일 토요일, 오후 2시부터 대전 KAIST에서 열립니다. 자세한 사항은 태터캠프 공식 블로그 (http://tattercamp.org/) 를 참조하시기 바랍니다. tistory 공지로 올라온글... 이번엔 대전이다. 상당히 땡기네 -_ -;; 한번 가볼까??
1. window 2000과 2003의 차이 -윈도우 2003서버는 기본적으로 .net프레임워크가 설치되어 있다. 1-1. IIS란? -Internet Information Server (인터넷정보서버) 2. 닷넷 프레임워크 3.0의 구성요소 WPF(Windows Presentation Foundation) - 백터 그래픽 기반의 UI 개발통합환경 WCF(Windows Communication Foundation) - 서비스 지향 어플리케이션을 신속하게 개발하기 위한 통합된 서비스 프로그래밍 - 통일성, 높은 생산성, 상호 운용성 WF(Windows Workflow Foundation) - WF로 작업하면 워크플로우를 명확하게 정의할 수 있고, - 워크플로우가 바뀌었을때 코드를 수정하지 않아도 - 간단하..
자주 쓰긴하지만 참 자주 까먹고 사용할 때마다 찾아서 쓰게 되는 스크립트입니다 ㅎㅎ function jumin_check() { if (document.form1.TextBox6.value.length != 13) { // 번호가 13개 아니라면 alert("번호의 개수가 모자랍니다."); document.getElementById("TextBox6").focus(); //커서를 주민번호 앞자리에 놓는다. return false; } else { var strjumin = document.getElementById("TextBox6").value; //변수에 주민번호 앞자리 담음 } var a1=strjumin.substring(0,1) //주민번호 계산법 var a2=strjumin.substring(..