전체 글
-
C# TextBox 자동 완성닷넷/WinForms 2016. 7. 5. 13:46
1. Collection Add AutoCompleteStringCollection autoCollection = new AutoCompleteStringCollection(); // Collection 하나씩 추가 autoCollection.Add("Collection1"); autoCollection.Add("Collection2"); autoCollection.Add("Collection3"); //Collection 배열로 추가 autoCollection.AddRange(new string[] { Collection1, Collection2, Collecion3 }); textBox1.AutoCompleteCustomSource = autoCollection; textBox1.AutoComplet..
-
C# MSSQL 연결닷넷/C# 2016. 7. 5. 13:45
using System.Data.SqlClient; // MSSQL 연결 할 때 제일 먼저 선언해 줄 것! Sql 아닙니다. SqlClient 입니다. namespace Monitoring{ public partial class frmMain : Form { public frmMain() { InitializeComponent(); } private void frmMain_Load(object sender, EventArgs e) { SqlConnection sqlConnection = new SqlConnection("Server=서버주소;Database=데이터베이스이름;User ID=아이디;Password=비밀번호"); if (sqlConnection != null && sqlConnection.S..
-
C# Textbox를 mssql에 저장닷넷/WinForms 2016. 7. 5. 13:42
1> Form Design private System.Windows.Forms.Label label1; //방번호 private System.Windows.Forms.Label label2; //이름 private System.Windows.Forms.Label label3; //외박사유 private System.Windows.Forms.Label label4; //외박일정 private System.Windows.Forms.DateTimePicker dateTimePicker1; //외박시작일 private System.Windows.Forms.DateTimePicker dateTimePicker2; //외박만료일 private System.Windows.Forms.Label label5; //~ p..
-
티스토리 블로그 개설 이틀째끄적이는 2016. 6. 25. 18:15
글 쓴 건 네이버블로그에서 옮겨 온 4개밖에 없는데 오늘 통계를 보니까 총 조회수가 35명이나 되었다. 무슨 글을 보고 온 걸까 싶어 유입키워드를 봤다. 이 블로그에는 아직 올리지 않은 글들이었다. 음.. 뭘까. 공통점은 같은 도메인을 썼다는 것 뿐이고.. 네이버 블로그에서 사용하던 그 도메인을 티스토리 개설하고부터 뭔가 더 편한 것 같은 이곳을 이 도메인으로 쓰고자 바꾸었는데 그래서 그런가보다. 동기화가 느린건지 아니면 다른 작용인지 모르겠지.. 다음날부턴 조회수가 줄어들겠지. 아마도.
-
파일 업로드를 통한 XSS공격 중 소스코드 관점의 보안 대책프로젝트 2016. 6. 24. 21:13
약 2년전에 과제로 작성했던 것. 1. 취약성 점검 방법 A. 먼저 사용자 게시판에 파일첨부 기능이 있는지 조사한다. 예) 게시판, 공개 자료실, 관리자 자료실, 이미지 자료실 등 B. 첨부기능이 존재하는 경우, 확장자가 jsp, php, asp, cgi 등 Server Side Script 프로그램을 업로드 하여 업로드가 가능한지 조사한다. 이 때 클라이언트 프로그램에서 JavaScript, VBScript 등의 스크립트로 파일첨부를 차단하는 경우 차단기능을 수정하여 파일을 첨부한다. C. 홈페이지에 있는 디렉토리 정보를 이용하여 첨부한 Server Side Script 프로그램의 위치를 조사한 후 브라우저 주소 창에서 해당 프로그램을 실행한다. D. 실행 창에서 프로그램 소유자를 조사하거나 중요정보가..