분류 전체보기

다운로드 파일은 여기서 받으시면 됩니다. http://code.google.com/p/aspjson/ Google Code Archive - Long-term storage for Google Code Project Hosting. code.google.com 한글이 깨지는 문제는 Case 8 ' String toJSON = """" & jsEncode(vPair) & """" 이부분을 다음과 같이 변경하면 된다. Case 8 ' String toJSON = """" & CStr(vPair) & """"
// A sample logging function to be added to a callbacks list var foo = function( value ) { console.log( "foo: " + value ); }; // Another function to also be added to the list var bar = function( value ) { console.log( "bar: " + value ); }; // Callbacks 첫글자 대문자로..주의해야함. var callbacks = $.Callbacks(); // Add the function "foo" to the list callbacks.add( foo ); // Fire the items on the list callbac..
$.ajax({ method:"post", url:"some.html", data: {name:"John", location:"Seoul"}, cache:false }).done(function(msg) { alert("Data Save: " + msg); }).fail(function(msg) { alert("Data Save: " + msg); }).always(function(msg) { alert("Data Save: " + msg); });
제이쿼리 사용시 가 select 안되는 경우 jQuery | Font Awesome
https://layout.jquery-dev.net/demos.html UI Layout Plug-in - Demos UI Layout Demos TIP: After viewing a demo, click 'Back' to return to this page There are basic demos for the Layout plug-in: Demos using a container element instead of BODY for the Layout: Demos show 'layout nesting' to create different arrangements: Examp layout.jquery-dev.net UI Layout Demos TIP: After viewing a demo, click 'Ba..
Flutter 는 모든것이 widget 으로 이루어 졌다고 생각함 2가지 위젯 StatelessWidget : UI가 변경될 수 없는 위젯 StatefulWidget : UI가 변경 가능한 위젯 단축키 : stful _name 언더바는 private 로 없으면 public 플루터에서 네이티브에 있는 코드를 활용할 때 위 그림에 있는 MethodChannel을 활용 StreamBuilder 위젯중 하나 Bloc 패턴 bloc 패턴을 사용할 때는 rxdart라는 라이브러리를 보통 사용한다. 이를 위해서는 pubspec.yaml 파일의 dependencies: 하위에 하단 소스를 추가한다. ( https://pub.dev/ 사이트에서 원하는 패키지 검색후 Installing 탭을 누르면 가장 최신 버전을 볼 ..
우선 명령창을 실행하고 프로젝트 폴더를 생성한다. 명령창에서 다음 코드를 입력해서 Razor 프로젝트를 생성한다. dotnet new webapp -o RazorPagesMovie VScode 프로그램을 실행시킨다. code -r RazorPagesMovie 명령창에 다음을 입력해서 "개발 인증서를 신뢰"을 인증하도록 한다. 그래야 브라우져에서 페이지를 확인 할 수 있다. dotnet dev-certs https --trust 실행하기. 디버깅 없이 실행(ctrl + F5) 을 실시하면 에러가 발생하는데..이때는 명령파렛트에서 OmniSharp:Restart OmniSharp 를 실행하고 .NET: Generate Assets for Build and Debug 를 실행한 후 디버깅을 실행하면 웹사이트가..
(입력 파라메터) => { 실행문 };
델리게이트란 무엇인가? 대리자. 메서드를 전달하는 참조자. 이름은 다르지만 리턴과 매개변수가 같은 메서드가 있다고 가정해 보자. 즉 이름만 다를뿐 형식은 동일하다. 이걸 delegate로 참조시킬 수 있다. 이럴때 이점은 메서드 매개변수로 다른 메서드를 전달할 수 있는 방법이 생긴다. string method1 (string name) {return name;} 위의 메서드가 있다고 가정해보자. delegate string mydelegate (string s); 동일한 형태의 델리게이트 선언. 다음과 같은 함수를 만들어보자. // 기능 메서드(함수)를 만든다. string method1 (string name) { return name; } // 메서드(함수) 연결 고리 대리자 선언. delegate ..
· Tools
명령파렛트에서 OmniSharp: Restart OmniSharp 입력해서 실행한다. 아래 확장 프로그램이 이미 설치되어 있어야 한다.
열거형 상수를 좀더 기억하기 쉽게 하기 위해서 사용함. public enum Category { Food, Music, Spots, Life }
C# 문자열은 Immutable(불변) 즉 한번 문자열이 설정되면, 다시 변경할 수 없다. C#의 키워드 string은 .NET의 System.String 클래스와 동일 문자열은 배열과 동일하다. 배열처럼 인덱싱 할 수 있다. 문자열 갱신이 많은 경우는 System.Text.StringBuilder 를 사용한다.