Platform/Environment
-
Microsoft .NET FrameworkPlatform/Environment 2012. 3. 11. 22:49
1. Visual Studio .NET 2002 / .NET Framework 1.0 (2002)- 첫 통합 개발 환경- C# 1.0 / Visual Basic.NET (7.0) 2. Visual Studio .NET 2003 / .NET Framework 1.1 (2003)- ADO.NET, ASP.NET, Windows Forms- C# 1.1 / Visual Basic.NET (7.1)- Windows Server 2003 → .NET Framework 1.1 표준 탑재 3. Visual Studio .NET 2005 / .NET Framework 2.0 (2005)- ASP.NET 2.0, ADO.NET 2.0, Windows Form 2.0- C# 2.0 / Visual Basic 2005 (8..
-
ASP.NETPlatform/Environment 2012. 3. 7. 15:59
ASP.NET 2.0 응용 프로그램(웹 사이트) 구성 파일(Configuration File) Machine.config Web.config Global.asax(ASP.NET 응용 프로그램 파일) 웹 폼(페이지) 응용 프로그램 상태 세션 상태 Server // HttpServerUtility.Redirect().Transfer().Execute() .UrlEncode() System.Web.UI.Pagevoid Page_Load(object sender, EventArgs e) .Context // HttpContext .IsPostBack .IsCrossPagePostBack .PreviousPage .FindControl() System.Web.HttpRequest .QueryString .Form..
-
자바Platform/Environment 2011. 8. 8. 22:33
$ jarclass Test01 { public static void main(String [] args){ for(int i=0 ; i < args.length ; i++) { .. args[i] .. } } }System(.exit()) // static.getProperty() // String, static"file.encoding""user.home""java.version".getenv()read only "JAVA_HOME" .currentTimeMillis() java.util.Random.nextInt() java.util.Calendar // JDK 1.1e.g. Calendar cal = Calendar.getInstance(); java.util.Math.sqrt() // static
-
JSPPlatform/Environment 2011. 8. 8. 22:18
* JSP / HTML 페이지 캐쉬 방지HTML JSP request // javax.servlet.http.HttpServletRequest .setAttribute() .getAttribute() .removeAttribute() .getParameter() .getParameterNames() .getRemoteHost() .getRealPath() .getContextPath().path response // javax.servlet.http.HttpServletResponse .sendRedirect() out // javax.servlet.jsp.JspWriter -> java.io.Writer .println() .print() .write() pageContext // javax.servl..
-
UNIX API(system call, primitives)Platform/Environment 2011. 1. 1. 23:37
Normal programs can’t do everything. Many operations such as calling other programs, dealing with files, and exiting have to be handled by the operating system through system calls. All system calls return -1 on failure Processes conventionally have access to three files: standard input file(0), standard output file(1), standard error file(2) open() O_RDONLY creat() read() write() mknod() execut..
-
-
VSPlatform/Environment 2010. 7. 27. 16:20
Microsoft C/C++ 7.0 // MFC 1.0 Visual C++ 1.0 // MFC 2.0 Visual C++ 1.5 // MFC 2.5 Visual C++ 2.0 // MFC 3.0 Visual C++ 2.1 // MFC 3.1 Visual C++ 2.2 // MFC 3.2 Visual C++ 4.0 // MFC 4.0 Visual C++ 4.1 // MFC 4.1 Visual C++ 4.2 // MFC 4.2 Visual C++ 5.0 // MFC 4.21 (mfc42.dll) Visual C++ 6.0 // MFC 6.0 (mfc42.dll) Visual C++ .NET 2002 // MFC 7.0 (mfc70.dll) Visual C++ .NET 2003 // MFC 7.1 (mfc71..