happynuri - 행복한 세상

고정 헤더 영역

글 제목

메뉴 레이어

happynuri - 행복한 세상

메뉴 리스트

  • HOME
  • TAG
  • MEDIA
  • LOCATION
  • GUEST
  • ADMIN
  • WRITE
  • 분류 전체보기
    • GIT
    • VUE3
    • NodeJS
    • Art
    • C#
    • ASP.NET
    • 오라클
    • XML
    • AJAX
    • 자바스크립트
    • 쿠폰
    • 일기
    • 공짜폰
    • 재태크
    • 심리
    • WPF
    • 실버라이트
    • MOSS
    • SQL
    • Active Director..
    • OCS
    • Kaoni
    • Topic

검색 레이어

happynuri - 행복한 세상

검색 영역

컨텐츠 검색

Ajax

  • [MOSS] Ajax Webpart HelloWorld

    2008.09.10 by happynuri

  • [MOSS] AjaxWebPart Error

    2008.08.22 by happynuri

  • 실버라이트와 Ajax의 연동

    2008.02.21 by happynuri

  • Update Panel 사용하기 (Ajax 자동 으로 만들기)

    2008.02.12 by happynuri

  • [ajax] readState

    2007.08.20 by happynuri

  • [ajax] Ajax Data Process

    2007.08.20 by happynuri

  • [ajax] 자동 완성 기능 핵심 코드 정리(지원이 생각)

    2007.08.20 by happynuri

  • [ajax] server 단의 server.aspx 에는

    2007.08.20 by happynuri

[MOSS] Ajax Webpart HelloWorld

네... 오늘도 피곤한 하루가 지나가고 있군요.. ㅎㅎ msdn에서 sharepoint 웹파트 개발시 이렇게 만들어라!! 라는 것을 그대로 따라 하다보면은 버튼 클릭시 텍스트 박스의 글씨가 레이블에 그대로 옮겨져야 하는 코드 인데... 어?? 이상하다 처음 한번은 ajax가 잘 되는데 두번 째 부터는 반응이 없네?? 라는 생각을 하실수가 있으십니다. 저는 삽질 많이 했습죠~ 그니까 ajax를 구현 하려면 기본적인 web.config 셋팅이 선행되어야 할것이고... default.master 등에 scriptManager 등은 추가 되어 있어야 할것입니다. 그럼 바로 예제 코드 나갑니다. using System.Web.Extensions 는 추가 하셔야 합니다. public class AjaxWP1 : S..

MOSS 2008. 9. 10. 16:25

[MOSS] AjaxWebPart Error

AjaxWebPart를 개발 해 보려고 버둥거리던중.. (물론 sdk를 그대로 실행시켜 보았다.. 근데 왜 엉뚱한 scriptManager를 중복해서 등록 할수 없다는 둥.. scriptManager가 없다는 둥 이상한 소리 해댄다..) 오류가 하나씩 나면서 해결이 안되었다 . 이 오류는 web.config에서 1.06xxxxx 버전을 3.5 버전으로 올렸더니 발생하는 에러로 링크 Heh heh, found the problem. When I upgraded the site, I failed to upgrade the version of the AJAX tookit from the 2.0 version to the 3.5 version. When I replaced that, the scriptmanag..

MOSS 2008. 8. 22. 20:30

실버라이트와 Ajax의 연동

http://silverlining.tistory.com/entry/SilverLight와-AJAX의-연동

실버라이트 2008. 2. 21. 10:43

Update Panel 사용하기 (Ajax 자동 으로 만들기)

Create a new page and switch to Design view. In the AJAX Extensions tab of the toolbox, double-click the ScriptManager control to add it to the page. Double-click the UpdatePanel control to add it to the page. Click inside the UpdatePanel control and then in the Standard tab of the toolbox, double-click the Label and Button controls to add them to the UpdatePanel control. note Make sure that you..

AJAX 2008. 2. 12. 12:33

[ajax] readState

function openSendStatus(getPost, urlFileAppl, trueFalse, sendData, cbFunction) { xmlHttp = newXMLHttpRequest(); //XMLHttpRequest 생성 xmlHttp.open(getPost, urlFileAppl, trueFalse); //송신방법,URL,통신방법 xmlHttp.onreadystatechange = function() { //처리상태 변경 발생 if (xmlHttp.readyState == 4) { //서버 처리 완료 if (xmlHttp.status == 200) { //파일 수신 성공 cbFunction(xmlHttp); //callback 함수 } else { exceptionControl(xmlHt..

AJAX 2007. 8. 20. 20:36

[ajax] Ajax Data Process

// Ajax Data Process // XMLHttpRequest 생성 function newXMLHttpRequest() { var reqHttp; if (window.ActiveXObject) { // IE try { reqHttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { reqHttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e1) { reqHttp = null; } } } else if (window.XMLHttpRequest) { // IE 이외 try { reqHttp = new XMLHttpRequest(); } catch (e) { reqHttp = null; } } if ..

AJAX 2007. 8. 20. 20:36

[ajax] 자동 완성 기능 핵심 코드 정리(지원이 생각)

// client : head 쪽에 javascript : chiwoniiAjaxMission function Read(obj) { if(event.keyCode==40) //다운키가 눌리면 { document.form1.sel1.focus();return; //--포커스를 select로 } objNode.text = encodeURI(obj.value); //텍스트박스에서 글자를 읽어 들어와서 encodiing xmlhttp.open ("Post","MissionServer2.aspx",false); //비동기, 화면 안바뀌고 하겠다 xmlhttp.send(xmlpara); //비동기로 보내면 var getstr = xmlhttp.responseXML; // 서버 처리 후 받아진다 for(i=0; i<..

AJAX 2007. 8. 20. 20:00

[ajax] server 단의 server.aspx 에는

이것 빼고는 싹 지우렴~

AJAX 2007. 8. 20. 19:37

추가 정보

인기글

최신글

페이징

이전
1
다음
TISTORY
happynuri - 행복한 세상 © Magazine Lab
페이스북 트위터 인스타그램 유투브 메일

티스토리툴바