BackEnd/C#28 C# devexpress 관련 자료 정리 DataTable 클래스에 insertAt 메소드 사용법https://gent.tistory.com/316https://stackoverflow.com/questions/20636398/add-data-row-to-datatable-at-predefined-index LINQ 사용해서 index 값 가져오기https://stackoverflow.com/questions/2471588/how-to-get-index-using-linq devexpress gridlookupedit 기본값 설정법https://supportcenter.devexpress.com/ticket/details/t395350/set-default-value-in-gridlookupedit 셀 값이 특정 셀값과 비교했을 때 다른 경우 .. 2024. 8. 29. C# ASP.NET 관련 자료 정리 쿠키 지우기 위한 방법https://stackoverflow.com/questions/6635349/how-to-delete-cookies-on-an-asp-net-website c# asp에서 eventagrs 객체를 통해 dropdown value 가져오는 방법https://stackoverflow.com/questions/51753456/how-to-get-selected-value-of-item-from-dropdownlist-inside-formview dropdownList 태그 첫번째 아이템 클릭 시 SelectedIndexChanged 이벤트 발생안할 경우https://stackoverflow.com/questions/8699163/first-item-in-dropdownlist-doesn.. 2024. 8. 29. C# 관련 자료 모음 몇 분마다 메소드 재 실행하는 방법private void OO_Load(object sender, EventArgs e) { ... timer1.Interval = 60000 * 5; // 5분 간격으로 timer1_Tick 수행 timer1.Tick += new EventHandler(timer1_Tick); timer1.Start(); } private void timer1_Tick(object sender, EventArgs e) { if (this.ContainsFocus) { your_method(nul.. 2024. 7. 29. Devexpress 관련 자료 정리 chart update 메소드 관련 설명https://www.codeproject.com/Questions/558555/RefreshingplusaplusChartplusinplusC-23 dateedit 컴포넌트 월만 표시https://m.blog.naver.com/dnjswls23/222616105388 chart 범례 구성방법https://docs.devexpress.com/WindowsForms/5884/controls-and-libraries/chart-control/legends/legends-alignment-and-layouthttps://docs.devexpress.com/CoreLibraries/DevExpress.XtraCharts.LegendBase.AlignmentHorizonta.. 2024. 7. 29. C# asp 메일 보내기 관련 자료 C# asp 에서 메일 보내는 기능을 아래 자료 참고하여 만듬. https://asp.net-tutorials.com/misc/sending-mails/#google_vignettehttps://www.c-sharpcorner.com/article/send-mail-from-asp-net-website/ 근데 메일 본문에 iframe 으로 pdf 를 첨부하려니까, https 오류가 생김 (메일을 보낼때는 SSL 통신 허용을 false 로 하고 보냄, 그러나 메일을 받는 쪽은 https를 사용하므로 'An existing connection was forcibly closed by the remote host' 오류가 계속 생김. https://stackoverflow.com/questions/258203.. 2024. 7. 15. C# 관련 자료 static method에서 cookie 읽는 방법https://stackoverflow.com/questions/20057756/read-cookies-inside-a-static-method 조건 처리하여 order by 하는 방법https://gent.tistory.com/441 2024. 7. 4. ASP.NET 관련 자료 정리 파일업로드 사이즈 제한https://www.telerik.com/blogs/upload-large-files-asp-net-radasyncupload 모달창 구현하기https://velog.io/@seungmimi/javascript%EB%AA%A8%EB%8B%AC-%ED%8C%9D%EC%97%85-%EA%B5%AC%ED%98%84%ED%95%98%EA%B8%B0 datatables 에서 numeric data 텍스트 정렬하는 방법https://stackoverflow.com/questions/29005984/how-to-right-align-numeric-data-to-right-in-datatables Search bar 만들기https://www.w3schools.com/howto/howto_css.. 2024. 5. 15. ASP.NET 관련 자료 정리 $(document).ready(function() not working https://jeffrey-oh.tistory.com/351 System.InvalidOperationException: Stack empty https://stackoverflow.com/questions/20406497/system-invalidoperationexception-stack-empty JSON 데이터 순환 참조 오류 해결 원인: https://blog.naver.com/monkeychoi/220507738841 해결책: https://stackoverflow.com/questions/1153385/a-circular-reference-was-detected-while-serializing-an-object-of-.. 2024. 4. 4. C# 관련 자료 enum 값을 int 로 치환하기 https://stackoverflow.com/questions/943398/get-int-value-from-enum-in-c-sharp 2024. 3. 31. 이전 1 2 3 4 다음