.NET TEAM - MindVirus
close
프로필 배경
프로필 로고

.NET TEAM - MindVirus

  • 분류 전체보기 (194)
    • 통계분석(Statistics) (1)
      • SPSS (1)
    • IT Talk (6)
    • Security (3)
      • 정보보호개론 (3)
    • Program (105)
      • C# (27)
      • ASP.NET (10)
      • ADO.NET (0)
      • CSS (1)
      • JavaScript (12)
      • Ruby (3)
      • XML (19)
      • Programming (13)
      • E-Test (Project) (20)
    • Network (2)
    • DATABASE (14)
    • Server(System) (1)
    • Advertise (1)
      • 음악학원소개!! (1)
    • ETC (58)
      • Download (13)
      • 면접정보 (3)
      • Think (17)
      • 커뮤니티 (17)
      • 비공개 (8)
  • HOME
  • TAGS
  • MEDIA
  • LOCATION
  • GUESTBOOK
  • ADMIN
  • WRITE

Windows Driver Foundation (WDF)

출처 : http://www.microsoft.com/whdc/driver/wdf/default.mspxWindows Driver Foundation(WDF)WDF를 사용하면 OS가 아닌 디바이스 장치에 중점을 두고 개발할 수 있다.WDF는 몇가지 드라이버 검증 툴을 통해서 커널 모드와 사용자 모드 드라이버의 개발을 위한 프레임워크를 포함하고 있다.Kernel-Mode Driver Framework(KMDF)KMDF는 커널 모드 드라이버에 필요한 기본적인 기능을 구현하고 있다. 다음을 포함한다:. PnP와 전원 관리. I/O 큐. Direct memory access (DMA). Windows management instrumentation (WMI). Synchronization각 윈도우즈 버전에 적합..

  • format_list_bulleted Program/Programming
  • · 2007. 5. 26.
  • textsms

BitTorrent 방식의 기술의 이해

출처 : http://www.mimul.com/pebble/default/2007/05/20/1179671460000.html BitTorrent의 구조는 아래 그림과 같다. 먼저 BitTorrent는 File Server에 호스팅된 torrent파일과 Tracker, Peer들로 구성된다. 우리가 가장 궁금한 것은 BittTorrent 방식에서의 다운로드는 어떻게 되는가인데.. 이 부분은 원본 사이트의 내용을 참조하도록 한다. 특정 이용자가 올린 파일은 BitTorrent 프로토콜의 운영에 동의한 파일이라는 가정하에 아래 시나리오를 정리했습니다. 클라이언트인 Leech가 원하는 파일을 얻기 위해서 Tracker에 Peer-List의 정보를 요청하여 정보를 받습니다. Leech는 클라이언트 정보를 파악하..

  • format_list_bulleted Program/Programming
  • · 2007. 5. 23.
  • textsms

ASP.NET 에서 HTML 페이지 캐쉬 사용하지 않기

Response.Cache.SetExpires(DateTime.Now.AddSeconds(0)); Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.Cache.SetValidUntilExpires(true); Response.Cache.SetNoServerCaching(); 브라우져의 페이지가 자주 바뀌는 페이지는 브라우져 캐쉬를 무효화 해야할 경우가 생긴다. 이런 때에는 Page_Load 부분에 위와 같은 구문을 넣어보자..

  • format_list_bulleted Program/ASP.NET
  • · 2007. 5. 22.
  • textsms

ASP.NET SessionState Server

Out-of-process Mode Included with the .NET SDK is a Windows® NT service: ASPState. This Windows service is what ASP.NET uses for out-of-process session state management. To use this state manager, you first need to start the service. To start the service, open a command prompt and type: Copy Codenet start aspstate What you'll see is: Figure 1. Starting the Windows NT service ASPState at the comm..

  • format_list_bulleted Program/ASP.NET
  • · 2007. 5. 22.
  • textsms

링크에 점선 제거.. 아직도 this.blur()?

링크를 클릭하게 되면 링크 주변에 점선이 생기게되죠. 물론 그대로 두는 것이 웹표준 접근성에 맞겠지만 모양을 중요시하는 경향이 국내에선 많기 때문에 링크에는 항상 onclick 이벤트에 this.blur() 자바스크립트를 이용해서 링크에 점선이 생기는걸 막고는 했죠. 이를 한번에 해결하려면 a 테그의 스타일을 정의할 때 아래와 같은 한줄을 넣어주시면 됩니다. ^ ^ a { selector-dummy: expression(this.hideFocus=true;} 상당히 간단하고 쉽게 링크의 점선을 없앨 수 있겠죠? ^ ^ 많이 활용하자고용~

  • format_list_bulleted Program/CSS
  • · 2007. 5. 21.
  • textsms

주민등록번호 체크하는 자바스크립트

자주 쓰긴하지만 참 자주 까먹고 사용할 때마다 찾아서 쓰게 되는 스크립트입니다 ㅎㅎ function jumin_check() { if (document.form1.TextBox6.value.length != 13) { // 번호가 13개 아니라면 alert("번호의 개수가 모자랍니다."); document.getElementById("TextBox6").focus(); //커서를 주민번호 앞자리에 놓는다. return false; } else { var strjumin = document.getElementById("TextBox6").value; //변수에 주민번호 앞자리 담음 } var a1=strjumin.substring(0,1) //주민번호 계산법 var a2=strjumin.substring(..

  • format_list_bulleted Program/JavaScript
  • · 2007. 5. 18.
  • textsms
  • navigate_before
  • 1
  • ···
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • ···
  • 18
  • navigate_next
공지사항
전체 카테고리
  • 분류 전체보기 (194)
    • 통계분석(Statistics) (1)
      • SPSS (1)
    • IT Talk (6)
    • Security (3)
      • 정보보호개론 (3)
    • Program (105)
      • C# (27)
      • ASP.NET (10)
      • ADO.NET (0)
      • CSS (1)
      • JavaScript (12)
      • Ruby (3)
      • XML (19)
      • Programming (13)
      • E-Test (Project) (20)
    • Network (2)
    • DATABASE (14)
    • Server(System) (1)
    • Advertise (1)
      • 음악학원소개!! (1)
    • ETC (58)
      • Download (13)
      • 면접정보 (3)
      • Think (17)
      • 커뮤니티 (17)
      • 비공개 (8)
최근 글
인기 글
최근 댓글
태그
  • #c#
  • #xml
  • #프로그래밍
  • #마샬링
  • #ASP.NET
  • #Remoting
  • #DOM
  • #Ajax
  • #JavaScript
  • #.NET
전체 방문자
오늘
어제
전체
Copyright © .NET TEAM - MindVirus All rights reserved.
Designed by JJuum

티스토리툴바