Programming (57) 썸네일형 리스트형 [PHP] HTML to Excel 개행 처리(단순 br로는 엑셀에서 개행처리 되지 않습니다.) [JQUERY] HTML4+HTML5을 위한 History.pushState HTML4+HTML5을 위한 History.pushState 기존 window.history.pushState는 예전 브라우저가 지원을 안하므로 해당 js을 사용하여 해결한다. githubhttps://github.com/browserstate/history.js ref.http://stackoverflow.com/questions/15835397/html4-browsers-does-not-support-history-pushstate-and-history-replacestate-metho [ASP.NET] Repeater와 ClientID ItemCreated안에서 해당 item은 controls collection 에 포함되지 않았기 때문에 parent controls 를 알 수 없다. 그러므로 ItemDataBound 사용해야하는데 postback에서만 발생하기때문에 rebound되지 않는다. rebound도 사용하려면 PreRender를 사용한다. protected void rptPassengerList_ItemDataBound(object sender, RepeaterItemEventArgs e) { DropDownList cboSubForeignYn = e.Item.FindControl("cboSubForeignYn") as DropDownList; TextBox textSubForeignName = e.Item.FindContr.. [Javascript] 남은 시간 자동으로 확인하는 스크립트(기본 초) [ASP.NET] DLL 버전 오류 해결법 DLL 버전 오류 해결법1. 프로젝트 탐색기에서 [모든파일표시] 클릭2. obj와 bin 폴더 삭제3. 솔루션 정리 및 다시 빌드 [ASP.NET] 마스터페이지에서 본 페이지 주소 확인 방법 마스터페이지에서 본 페이지 주소 확인 방법if(Page.Request.Path.Contains("bookings.aspx")){class = "active";} [Javascript] table td 특정 이벤트 중 첫 번째 실행 table td 특정 이벤트 중 첫 번째 실행 var InitCalendar = function () { var firstCell = $('#cbpStartDate table tbody td[onclick]:first'); if (firstCell.length > 0) { firstCell.click(); } }; [ASP.NET] TextBox 에서 ReadOnly 속성 추가 Net 2.0 부터는 TextBox 의 속성인 ReadOnly = true 적용을 하면 서버에서 해당 데이터를 못 읽는 문제가 발생한다. 해결방법은 다음과 같다. 해당 컨트롤의 ReadOnly 속성을 제거하고 C#에서 컨트롤명.Attributes.Add("ReadOnly", "ReadOnly"); 을 추가하면 된다. 이전 1 2 3 4 5 ··· 8 다음