private string GetDayOfWeek(DateTime dateTime){var day = dateTime.DayOfWeek;string week = string.Empty;switch (day){case DayOfWeek.Monday:week = "월"; break;case DayOfWeek.Tuesday:week = "화";break;case DayOfWeek.Wednesday:week = "수";break;case DayOfWeek.Thursday:week = "목";break;case DayOfWeek.Friday:week = "금";break;case DayOfWeek.Saturday:week = "토";break;case DayOfWeek.Sunday:..
날짜와 시간의 형식에 맞춘 String을 DateTime으로 변경해보자. String을 DateTime으로 변경하는 방법은 여러가지 있습니다. 보통 아래방법들이 많이 사용됩니다. 1. Convert.ToDateTime("날짜") - 보통 Type을 변경할때 많이 쓰이는 Convert 함수입니다.2. DateTime.Parse("날짜") - DateTime Class에서 제공하는 메소드로 Convert.ToDateTime과 별반 차이가 없습니다.3. DateTime.TryParse("날짜",bool) - Parse()의 확장형으로 변경과 함께 정상적으로 변경이 되었는지 확인값도 리턴합니다.4. DateTime.ParseExact("날짜","형식") - String에 들어가있는 날짜 형식을 사용자가 지정할수..
Detecting Page Refresh Steven Bey 12.11.2004 Introduction A common problem that Web Application Developers encounter is how to stop the user from refreshing the page. This is a problem if the previous request to the server was a PostBack, which, for example, inserted the WebForm’s data into a database. The result: duplicate rows in the database. The answer to this problem is that you can’t stop ..
using System.Text.RegularExpressions; protected string return_Val = ""; protected void Page_Load(obeject secder, EventArgs e) { string str_Val = ""; str_Val = CheckXSS(return_Val ); Respons.Write(str_Val); } public static string CheckXSS(string str_Regex) { string return_Val = str_Regex.ToLower().Trim(); Regex regex = new .Regex(@"()"); Boolean valBool = regex.IsMatch(return_Val); if (valBool ) ..
이벤트 발생 시킨 후, 새로고침시 이전 발생시킨 이벤트를 재발생 방지 코드.. private bool _refreshState; private bool _isRefresh; public bool IsRefresh { get { return _isRefresh; } } protected override void LoadViewState(object savedState) { object[] allStates = (object[])savedState; base.LoadViewState(allStates[0]); _refreshState = (bool)allStates[1]; _isRefresh = _refreshState == (bool)Session["__ISREFRESH"]; } protected over..
OleDb을 이용해서 DB select 하듯이 엑셀내용을 DataTable로 읽어오는 부분입니다. string connectionString = String.Format(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Extended Properties=Excel 8.0;", 파일명); OleDbConnection conn = new OleDbConnection(connectionString); conn.Open(); //시트명을 datatable로 반환한다. DataTable worksheets = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null); //첫번째 시트를 가져오는 쿼리작성 string commandS..
- 마이리틀
- 집밥백선생
- 서울 데이트
- C#기초
- 장범준
- ASP.NET
- 볼빨간사춘기
- 지진속보
- 서울 데이트코스
- ASP
- 화재
- 서울데이트 코스
- 엔플라잉
- MS-SQL
- 백종원
- 자바스크립트
- clr
- 레시피
- 함수
- JavaScript
- SQL
- 집밥 백선생
- 지진
- 4차산업혁명
- MSSQL
- c#
- 백선생
- 데이트
- 집밥
- DateTime
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Total
- Today
- Yesterday