VS2005 켜질때 속도 향상 시키기 http://dotnettipoftheday.org/tips/optimize_launch_of_vs2005.aspx 1. 도구 > 옵션 > 환경 > 시작 > 시작 시 '빈 환경 표시' 2. Visual Studio 2005 단축아이콘의 '속성' 에 가서 대상의 맨 뒷부분에 '/nosplash'라고 추가해준다 VS2005 속도 향상 http://dotnettipoftheday.org/tips/speedup_visual_studio.aspx 1. 도구 > 옵션 > 환경 > 환경 도구에 에니메이션 효과 주기 체크 해제 2. 도구 > 옵션 > 텍스트 편집기 > C# > 표시 > 탐색 모음 체크 해제 3. 도구 > 옵션 > 텍스트 편집기 > 변경 내용 추적 체크 해제 4. 도..
// PC로 저장 선택 function download_mail() { var sfileName = makeRightName(g_paramURL); sfileName = sfileName + ".eml"; if (navigator.appVersion.indexOf("MSIE 5.5") != -1) window.open("remote/interreadattach.asp?fileURL=" + escape(g_paramURL) + "&fileName=" + escape(sfileName)); else window.location.href = "remote/interreadattach.asp?fileURL=" + escape(g_paramURL) + "&fileName=" + escape(sfileName); ..
JavaScript로 Modal Dialog를 띄우는 경우 옵션으로 주어야 하는 값들이 보통 window.open과 달라 고민되는 경우가 많다. 주로 아래와 비슷하게 사용을 많이 하고, "status:no;dialogWidth:765px;dialogHeight:"+height+"px;help:no;scroll:no;edge:sunken;resizable=yes" 상태바가 보일지 여부, 도움말 버튼이 보일지 여부 사이즈나 테두리 사이즈 조절이 가능할지 여부등의 옵션이 존재한다. 페이지와 종속적인 모달 다이얼로그를 실행하고 싶을땐 한번쯤 위 옵션을 이용해서 테스트 해보도록 하자~
What is service-oriented architecture? Service-oriented architecture (SOA) is a term that many different people use in many different ways. Most of the time, SOA refers to architecture for software systems in which services are the fundamental building blocks; that is what we mean by SOA in this book. This is a good, broad definition, but there are many shades of meaning when you start digging i..
ASP.NET 503 서버 사용량이 많습니다. 503 서버 에러가 나타나는 경우 다양한 케이스가 있을 수 있지만, 대부분은 프로그램의 오류에서 발생하는 경우가 대부분입니다. '503 - Service Unavailable' 메시지가 표시된다면 응용프로그램의 오류 또는 권한의 문제로 Application Pool 이 오류 횟수를 초과하여 Stop 상태가 되어 있을 수 있고, 이럴 경우 Application Pool을 Start 해주는 방법으로 임시 조치할 수 있지만, 원인을 밝혀 문제를 해결해 나가야 합니다. (프로그램의 오류 또는 권한의 적절한 설정이 대부분의 해결법입니다.) 503 서버 에러 중 '503 - Server Too Busy' 메시지가 표시된다면, 서버의 접속량이 초과하여 접속이 안되는 문제..
MS에서 .NET FrameWork 3.5로 발전하면서 .NET FrameWork Library의 소스코드를 공개하기로 정했다고 합니다. .NET 개발자에게는 기쁜 소식이네요. 완벽한 소스코드는 아니지만 디버깅중에 .NET Library의 디버깅도 가능하니 디버깅에 더 많은 정보를 얻을 수 있을 것 같습니다. http://blogs.msdn.com/jinhoseo/archive/2007/10/16/net-framework.aspx http://weblogs.asp.net/scottgu/archive/2007/10/03/releasing-the-source-code-for-the-net-framework-libraries.aspx 위 링크를 참조하세요~