본문 바로가기

분류 전체보기

(4536)
웹 브라우저에서 Flash만 빼고 다른 ActiveX 를 차단할 수 있을까? 아래와 같은 질문이 있었습니다. IWebBrowser2를 통해 웹컨트롤을 만들 때 특정 ActiveX만 허용하고 차단하는 방법이 있을까요? ; http://social.msdn.microsoft.com/Forums/ko-KR/visualcplusko/thread/82468d1f-fd2b-45d0-8b0e-4bc75af1d06b 질문자의 말대로, 웹 브라우저를 사용자 정의해서 DLCTL_NO_DLACTIVEXCTLS | DLCTL_NO_RUNACTIVEXCTLS 플래그를 설정해주면 IE Web Browser 컨트롤에서 활성화되는 모든 ActiveX를 비활성화 시킬수 있습니다. 하지만, "Flash" 만 허용하고 - 즉, 특정 ActiveX 만 허용하고 다른 컨트롤을 차단하는 기능은 없습니다. 그래도... ..
Crash덤프만들고 디버깅하기 Article ID: 892277 - Last Review: May 18, 2007 - Revision: 2.4Troubleshooting ASP.NET using WinDbg and the SOS extensionView products that this article applies to.ASP .NET Support Voice ColumnTroubleshooting ASP.NET using WinDbg and the SOS extensionTo customize this column to your needs, we want to invite you to submit your ideas about topics that interest you and issues that you want to see ad..
해당 어셈블리가 Debug 빌드인지, Release 빌드인지 알아내는 방법 http://blog.naver.com/techshare/100150127754 위에서 퍼온 글입니다. 국내는 어떤지 모르겠지만, 해외의 경우에는 '서비스 중인 DLL'이 Debug 빌드된 것인지, Release 빌드된 것인지를 민감하게 여기는 경우가 있는 것 같습니다. 필요없이 성능에 손해되는 DLL 로 서비스할 이유는 없으니까요. 검색을 해보면, 생각보다 쉽게 방법을 찾을 수 있습니다. How to tell if a .NET application was compiled in DEBUG or RELEASE mode? ; http://stackoverflow.com/questions/194616/how-to-tell-if-a-net-application-was-compiled-in-debug-or-rel..
프로그래밍 언어 우선순위 [출처] C# 언어 ... 좋은데... 정말 좋은데... 뭐라 표현할 말이 없네... ^^|작성자 techshare
EneityFrame Key로 Delete하기 EntityFrameWork를 사용하여 Delete하기 using (clscEntities context = new clscEntities()) { foreach (var item in input) { tcl_process_category_study model = new tcl_process_category_study { category_no = item.CategoryNo, company_seq = companySeq, study_cd = item.ProcessCd, study_type = item.StudyType }; context.tcl_process_category_study.Attach(model); context.ObjectStateManager.ChangeObjectState(model, ..
Linq 에서Aggregate메서드 사용하기 데이터를 루핑을 돌아 특정 컬럼의 데이터를 스트링으로 연결할 일이 있었다 그래서 Aggregate메서드를 사용해 본다 string cities_string = cities.Aggregate(new StringBuilder(), (sb, c) => { if (0 != sb.Length) sb.Append(", "); sb.Append(c.Name); return sb; }, sb => sb.ToString());
dafsf asdfasf
테이블에서 체크박스에서 체크된 특별 컬럼들 가져오기 var tds =$('.테이블클래스 tr:has(:checkbox:checked) .td에준클래스'); 위와같이 하면 특정 td값들을 array로 가져올수 있다.