본문 바로가기

Dev_Language

(17)
Win2003 / VS.NET 2003에서 "CS0016"오류에 대한 해결방법 '/' 응용 프로그램에 서버 오류가 있습니다. -------------------------------------------------------------------------------- 컴파일 오류 설명: 이 요청을 제공하는 데 필요한 리소스를 컴파일하는 동안 오류가 발생했습니다. 아래의 오류 정보를 확인한 다음 소스 코드를 적절하게 수정하십시오. 컴파일러 오류 메시지: CS0016: 'c:WINNTMicrosoft.NETFrameworkv1.1.4322Temporary ASP.NET Filesroot2135a5088d69a834gdksfxh3.dll' 출력 파일에 쓸 수 없습니다. '액세스가 거부되었습니다. 이런 오류가 나옵니다. 물론 검색을 해봐야지요... MSDN.. 딸랑 한줄 나옵니다. 반가..
[-2147016684] 요청한 작업이 개체의 클래스와 연관된 하나 이상의 제약 조건을 만족하지 않습니다. {"요청한 작업이 개체의 클래스와 연관된 하나 이상의 제약 조건을 만족하지 않습니다." } [System.Runtime.InteropServices.COMException]: {System.Runtime.InteropServices.COMException} System.Object: {System.Runtime.InteropServices.COMException} _className: null _COMPlusExceptionCode: -532459699 _exceptionMethod: _exceptionMethodString: null _helpURL: null _HResult: -2147016684 _innerException: { } _message: "요청한 작업이 개체의 클래스와 연관된 하나 이상..
DirectoryEntry 권한 설정 문제 대처방법 {"연산 오류가 발생했습니다" } [System.Runtime.InteropServices.COMException]: {System.Runtime.InteropServices.COMException} System.Object: {System.Runtime.InteropServices.COMException} _className: null _COMPlusExceptionCode: -532459699 _exceptionMethod: _exceptionMethodString: null _helpURL: null _HResult: -2147016672 _innerException: { } _message: "연산 오류가 발생했습니다" _remoteStackIndex: 0 _remoteStackTraceStrin..
MSX 서버에서 온 작업이나 그단계 또는 일정을 추가 업데이트 삭제할 수 없습니다 MSX 서버에서 온 작업이나 그단계 또는 일정을 추가 업데이트 삭제할 수 없습니다 해결 /*srvid = 0 srvname='LEETEST'*/ use master select * from sysservers /*originating_server='WEBTEST' 를 'LEETEST'로 수정해서 해결함.' */ use msdb select * from sysjobs EXEC sp_configure 'allow updates', 1 Update sysjobs set originating_server = 'LEETEST' EXEC sp_configure 'allow updates', 0 이러한 메시지가 뜰 것입니다. "MSX 서버에서 온 작업이나 그단계 또는 일정을 추가 업데이트 삭제할 수 없습니다." "D..
블랙에디션 asp.net 500 error 발생 시 아래 사항으로 해결이 안되서 추가글을 등록함 우선 OS : 2007-08-10 일자 블랙에디션 XP OS 를 설치하면 Framework 3.0까지 설치가 됨 아래 방법으로 했는데도 해결이 안되서 좀더 확인해보니 Framework 2.0 도 새로 등록일 해줘야 함 작업순서 1. IIS 제거 2. Distributed Transaction Coordinator 서비스 시작 3. IIS 재설치 4. 닷넷 1.1 등록(C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis -i) 5. 닷넷 2.0 등록(C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -i) 6. IIS 재시작 7. 인터넷 정보 서비스 -..
MIME Type .* application/octet-stream .323 text/h323 .acx application/internet-property-stream .ai application/postscript .aif audio/x-aiff .aifc audio/aiff .aiff audio/aiff .asf video/x-ms-asf .asr video/x-ms-asf .asx video/x-ms-asf .au audio/basic .avi video/x-msvideo .axs application/olescript .bas text/plain .bcpio application/x-bcpio .bin application/octet-stream .bmp image/bmp .c text/plain .cat app..
LDAP search strings samples - Find all Computers that are NT4.0 BDCs (&(objectCategory=computer)(operatingSystemVersion=4*)(userAccountControl:1.2.840.113556.1.4.803:=8192)) - Find all Computers that do not have a Description Notice the "!" that means "NOT". (objectCategory=computer)(!description=*) - Find all Groups that have a Description (objCategory=group)(description=*) - Find all Groups that start with QA or HD Notic..
DateTime.ToString() Method 변환식 All the patterns: MM/dd/yyyy 10/25/2007 dddd, dd MMMM yyyy Thursday, 25 October 2007 dddd, dd MMMM yyyy HH:mm Thursday, 25 October 2007 00:49 dddd, dd MMMM yyyy hh:mm tt Thursday, 25 October 2007 12:49 AM dddd, dd MMMM yyyy H:mm Thursday, 25 October 2007 0:49 dddd, dd MMMM yyyy h:mm tt Thursday, 25 October 2007 12:49 AM dddd, dd MMMM yyyy HH:mm:ss Thursday, 25 October 2007 00:49:38 MM/dd/yyyy HH..