Example (3) 썸네일형 리스트형 [jsonp] Ajax jsonp 사용방법 간단예제 https://goo.gl/kwd7cv 원리 https://goo.gl/gdzhjV core javascript 로 jsonp 예제 https://goo.gl/8gohsw SOP - 동일출처원칙 https://goo.gl/twQQa9 크로스도메인 예제 https://goo.gl/Ynfc5A java 예제 https://goo.gl/zYEUcw https://goo.gl/Dn9UG [jquery mobile] swipe event swipe left / right 는 기본적으로 이벤트 핸들러를 제공하는데 up/down 은 api doc 에 없어서 구현 된 예제를 찾아봤습니다. jquery Mobile https://api.jquerymobile.com/swipe/ jsfiddle https://goo.gl/Nwvhu1 touch swipe - 페이지 하단에 example 들이 있습니다. http://labs.rampinteractive.co.uk/touchSwipe/demos/Page_scrolling.html [Z.EntityFramework.extention][bulkinsert] c# example using (var context = new KSKEntities()) { context.Configuration.AutoDetectChangesEnabled = false; context.Configuration.ValidateOnSaveEnabled = false; context.Database.Connection.Open(); using (var ts = new TransactionScope()) { try { context.BulkInsert(SampleList); context.BulkSaveChanges(); ts.Complete(); Console.WriteLine("bulk insert : OK"); } catch (Exception ex) { ts.Dispose(); Console.Wri.. 이전 1 다음