본문 바로가기

전체 글175

잘가라~ 2008! 새해 복 많이 받으세요! 새해 첫 포스팅은 2008년을 보내면서 시작하네요^^ 이제막~ 2009년이 시작되었습니다. 2008 마지막 날은 강화도 장곶에서 해넘이를 보면서 무사히(?) 마쳤습니다. 말많고 시끌시끌했던 2008년~ 이제 보내고 새로운 맘으로 2009년 시작해 봅니다. 여기는 강화도! 여기는 강화도 동막해수욕장~ 연인들끼리 가족들기리 많이들 오셨더군요.. 눈이 왔었는지 눈이 있더군요~ 처음엔 얼음인가 했는데.. 생각해 보니 여긴 바다고하니 얼음은 아닌것 같더군요 ㅎ~ 동막 해수욕장은 일몰을 보기가 조금은 어려울듯 해서 다시 장곶으로 갔습니다. 여기에 차를 세우고 저쪽 바닷가로 갔는데.. 시간이 지날수록 해넘이를 찍으려는 분들이 정말 많이 오시더군요.. 나중엔 차를 세울때가 없을 정도로 많이 오.. 2009. 1. 1.
Silverlight KeyNotFoundException 사용자 코드에서 System.Collections.Generic.KeyNotFoundException이(가) 처리되지 않았습니다. 요! 에러메세지때문에 몇시간을 해맸는데. ㅋㅋ 어이 없다는.. 서버측 WCF 서비스 binding형식을 wsHttpBinding 을 basicHttpBinding 으로 바꾸어준다. 2008. 12. 30.
JavaScript Playstates Event Code ValueStateDescription0UndefinedWindows Media Player is in an undefined state.1StoppedPlayback of the current media item is stopped.2PausedPlayback of the current media item is paused. When a media item is paused, resuming playback begins from the same location.3PlayingThe current media item is playing.4ScanForwardThe current media item is fast forwarding.5ScanReverseThe current media item is fas.. 2008. 12. 4.
한잔 하실래요~ 한잔 하실래요~ ... ㅋ... 2008. 11. 16.
C# 간단 트레이닝 1 주어진 수를 일의자리는 버리고, 10의 자리는 반올림 하는 프로그램을 작성하라 (단, 내부함수 - Round -는 사용할 수 없슴). using System; namespace ConsoleClient { class Program { static void Main(string[] args) { int a = 6510; //일자리수는 0으로 , 10자리는 반올림.. int b = a / 10; int result = Int16.Parse(b.ToString() + "0"); char[] ch = result.ToString().ToCharArray(); char[] ch2 = new char[ch.Length + 1]; int flag = 0; if (Int16.Parse(ch[ch.Length - 2]... 2008. 10. 17.
asp.net paging source 내가 사용하는 페이징클래스[C#] 일단, 소스부터 보자면.. [CPaging.cs] using System; using System.Text; /// /// auth. : ranos94@gmail.com /// date : 2007-12-01 /// desc. : 페이지 Navigation UI를 보여준다. /// *퍼가실땐 출처를..* /// copyright xwing.tistory.com /// public class CPaging : System.Web.UI.Page { private int page; private int rowPerPage; private int totalRecord; private int totalPage; private int sPage; private int ePage; .. 2008. 10. 15.