2019년 4월 2일 화요일

C# - ajax 에서 Session 사용






ajax Session 사용

[WebMethod(EnableSession=true)]
public String SqlDao(string ScheNo, string SetNo)
{ .. }


댓글 없음:

댓글 쓰기

MSSQL - Cursor vs Temp Table

#테이블 변수사용의 예 use pubs go declare @tmptable table (     nid int identity(1,1) not null,     title varchar (80) not null ) -- 테이블 변수 선언 inse...