การทำ Web service ด้วย WCF + Restful + Json
WCF จะสามารถบริการ Web service ได้ทั้ง windows application กับ web application 1) open visual studio 2012 2) new project windows application form 3) add reference 4) code behide 5) สร้าง Service1…
WCF จะสามารถบริการ Web service ได้ทั้ง windows application กับ web application 1) open visual studio 2012 2) new project windows application form 3) add reference 4) code behide 5) สร้าง Service1…
$(document).ready(function(){ $('#login a').toggle(function(){ $(this) .addClass('active') .next('from') .animate({'height' : 'show'},{ duration: 'slow', easing: 'easeOutBounce' }); },function(){ $(this) .removeClass('active') .next('form') .slideUp(); }); }); <!doctype html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>…
$(document).ready(function(){ $('#accordion > li ul') .click(function(event){ event.stopPropagation(); }) .filter(' :not(:first)') .hide(); $('#accordion > li,#accordion > li > ul > li').click(function(){ var selfClick=$(this).find('url:first').is('visible'); if(!selfClick){ $(this) .parent() .find('> li ul:visible') .slideToggle(); }…
$(document).ready(function(){ $('#celebs ul > li ul') .click(function(event){ event.stopPropagation(); }) .filter(' :not(:first)') .hide(); $('#celebs ul > li').click(function(event){ var selfClick=$(this).find('url:first').is('visible'); if(!selfClick){ $(this) .parent() .find('> li ul:visible') .slideToggle(); } $(this) .find('ul:first') .stop(true,true) .slideToggle();…