본문 바로가기

분류 전체보기

(4558)
플래쉬를 레이어 팝업 밑으로 나오게 하기 플래쉬에 태그안에 위의 파라미터를 넣어주면 된다. 알면 쉽지만 모르면 골치아픔
Child WIndow가 닫혔는지 조사하기 먼저 child window가 열려있다가 가정합니다. win = window.open(...); 다음은 setInterval로 0.1초마다 Child WIndow가 살아있는지 체크하니다. var timer, win; function polling(){ if (win && win.closed) { clearInterval(timer); alert('popup window is closed.'); } } timer = setInterval('polling()',100);
Refresh Javascript 자기 자신을 갱신하기 위한 스크립니다. location.reload(true); 위와 같이 쓰면 자신의 페이지를 리로드 한다.
How to: Set Up Remote Debugging http://msdn.microsoft.com/en-us/library/bt727f1t.aspx
Localization in ASP.NET MVC with Griffin.MvcContrib http://www.codeproject.com/Articles/352583/Localization-in-ASP-NET-MVC-with-Griffin-MvcContri 위에서 퍼온 글입니다. Demo project Project site @ gitub Online documentation Introduction Griffin.MvcContrib is my contribution project for ASP.NET MVC3 which contains several features. This article will go through the localization features that exists in the framework. The features consists of the following (wh..
Know Program Database file (PDB) http://www.codeproject.com/Articles/349076/Know-Program-Database-file-PDB Introduction This article helps developer who are beginner or intermediate level but don't have much understanding about the importance of PDBs and why they are required.What is PDB : PDB is acronymn for Program database file A PDB file is typically created from source files during compilation. It stores a list of all symb..
Adapter Pattern http://www.codeproject.com/Articles/342082/Understanding-and-Implementing-the-Adapter-Pattern?display=Print 위에서 퍼온 글입니다. Download Source C++ - 7.3 KB Download source C# - 7.8 KB Introduction This article aims at understanding when we could find the Adapter pattern useful and how can we have a rudimentary implementation of the Adapter pattern using C# and C++. Background It was almost 6 years bac..
c#으로 BHO(Browser Helper Object) 만들기 http://www.codeproject.com/Articles/350432/BHO-Development-using-managed-code 위에서 퍼온 글입니다. Introduction Browser Helper Object (BHO) is a plug-in for Internet Explorer (IE). BHO let developers to drive IE. A plug-in is a program which extends the functionality of a browser. It can be used to retrieve information or modify the content of the webpage that is being displayed in a browser window, or ..