Korean Language Pack for Visual Studio Code

PHP Debug

PHP Intelephense

sftp

favorites

Auto Close Tab

Dart

Flutter

JavaScript (ES6) code snippets

Overtype

 

Visual Studio .NET 2003으로 만들어진 프로그램 수정시 필요사항

 

1. style 쪽 변경이 대부분이다.

 

2. 디자인 화면으로 가면 html을 자동으로 바꾸는데 이부분을 꺼야 한다.

 

HTML유효성 검사 사용을 체크해제 해야만 HTML쪽에 수정한 코드를 툴 마음대로 바꾸지 못한다.

 

3.

 

http://www.uipress.com/add-json-handler-support-in-iis-7/

 

add .json handler support in IIS 7

Sometimes we need to create JSON in a text file with extension .json, however by default IIS 7 or any of the IIS are not configure to handle .json extension. So below is a very simple method to do that. You can apply the method on the root of IIS so .json can be handled by every site or virtual folder in the IIS or just to the specific site.

  1. Open IIS Manager
  2. Display properties for the IIS Server
  3. Click MIME Types and then add the JSON extension:
    • File name extension: .json
    • MIME type: application/json
  4. Go back to the properties for IIS Server
  5. Click on Handler Mappings
    • Add a script map
    • Request path: *.json
    • Executable: C:\WINDOWS\system32\inetsrv\asp.dll
    • Name: JSON

[Client쪽 Javascript에서 사용할때]

 

//선택된 위치의 값(record)을 가져온다.

var pos = grid.getSelectionModel().getCurrentPosition();
record = grid.store.getAt(pos.row);

 

//record중 Seq 필드 값을 구한다.

cellvalue = record.data["Seq"];

 

//Grid 전체를 조회한다.

for (index = 0; index < grid2.getStore().data.length; ++index) {
    Seq = grid2.getStore().data.getAt(index).raw["Seq"]; //Seq 필드 값을 구한다.
    ReceiverID = grid2.getStore().data.getAt(index).raw["ReceiverID"]; //ReceiverID 필드 값을 구한다.
}

[Client쪽 Javascript에서 사용할때]

 

//Grid에서 선택된 값을 가져온다.
var pos = grid.getSelectionModel().getCurrentPosition();

ClickCustom 함수가 있으면 실행한다.

 

if (typeof (btnAdd_Click_Custom) != "undefined") {

btnAdd_ClickCustom();

}

http://www.codeproject.com/Articles/10153/Debugging-Windows-Services-under-Visual-Studio-NET

regsvr32.exe "%ProgramFiles(x86)%\Common Files\Microsoft Shared\VS7Debug\msdbg2.dll"

 

도스창은 관리자 권한으로 실행하여야만 합니다.

 

링크 : http://lazypaul.tistory.com/entry/IE10-설치시-Visual-studio-2010-스크립트-디버거-연결-실패-문제

+ Recent posts