- XSS방어
- jquery 바코드생성
- 원격ftp
- 말줄임표시
- 404에러페이지
- javascript 바코드 생성
- 맥 오라클설치
- php 캐쉬제거
- simpe ftp
- 바코드 스캔하기
- asp ftp
- SSD 복사
- javascript redirection
- 바코드 생성하기
- 타임피커
- ViewData
- ASP.Net Core 404
- asp.net core swagger
- Mac Oracle
- 강제이동
- XSS PHP
- swagger 500 error
- asp.net Select
- asp.net core Select
- TempData
- django 엑셀불러오기
- 하드 마이그레이션
- ViewBag
- 하드 윈도우 복사
- asp.net dropdownlist
목록ASP.NET/ASP.NET Core (50)
웹개발자의 기지개
보통 실무작업할때 CSS 파일을 자주 수정하는데, 그때마다 크롬은 캐싱 기능이 강해서 바로바로 최근 수정된 내용을 반영되지 못할때가 많다. 여타의 백엔드 언어에서도 마찬가지로 아래와 같은 패턴으로 이용하면 될듯하다. ASP.Net Core MVC 의 경우 cshtml 레이저 페이지에서 이런식으로 하면 바로바로 최신내용이 반영된다. PHP 는 index.css?ver= 이런식으로

https://learn.microsoft.com/ko-kr/aspnet/core/tutorials/signalr?view=aspnetcore-6.0&tabs=visual-studio&WT.mc_id=DT-MVP-35766 ASP.NET Core SignalR 시작하기 이 자습서에서는 ASP.NET Core SignalR을 사용하는 채팅 앱을 만듭니다. learn.microsoft.com ASP.Net Core SignalR 공식 자습서 소스에는 Page Razor 방식으로 예제를 만들어 놓았는데, 필자는 MVC 방식으로 변경해서 돌려 보았다. 우선 Github 에 필자의 소스를 모두 올려 올려놓았다. https://github.com/wonpaper/ASPNetCore_SignalR_SimpleChat..
SQL 쿼리문에서 Join 문과 같이 관계가 연결되있는 부분을 LINQ 의 Include 와 ThenInclude 를 통하여 불러올수 있는데, 이에 좋은 포스팅 글이 있어서 소개한다. https://entityframeworkcore.com/querying-data-include-theninclude EF Core Include - Learn How to Retrieve Related Objects in LINQInclude The Include method specifies the related objects to include in the query results. It can be used to retrieve some information from the database and also want..

https://github.com/serilog/serilog GitHub - serilog/serilog: Simple .NET logging with fully-structured eventsSimple .NET logging with fully-structured events. Contribute to serilog/serilog development by creating an account on GitHub.github.com NuGet 패키지에 알맞게 추가 설치한다. [ appsettings.json ] //log "Serilog": { "Using": [ "Serilog.Sinks.File" ], "MinimumLevel": { "Default": "Informatio..

상단 이미지 처럼 Input 박스의 Radio 버튼들을 ASP.Net Core 상에서 처리하는 방법을 정리해 보았다. [ SpoDc.cs ] - DC 관련 기본 테이블 entity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ChilgokReserveSystem.Api.Models { [Table("DC")] public class SpoDc {..

네이버에디터를 실무에서 자주 연동해서 쓰는데 필자두 PHP, JSP 등에 네이버에디터를 연결하여 잘 쓰고 있다. http://naver.github.io/smarteditor2/user_guide/ SmartEditor2 사용자 가이드 · GitBook No results matching "" naver.github.io https://github.com/naver/smarteditor2 GitHub - naver/smarteditor2: Javascript WYSIWYG HTML editor Javascript WYSIWYG HTML editor. Contribute to naver/smarteditor2 development by creating an account on GitHub. github.c..
ASP.Net Core 코드 상에서 일반적인 동기(sync) 처리 기법이 아니라 비동기(async) 처리 기법으로 코드를 짤 수 있다. 일단 아래 코드를 비교해서 보자. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 // 일반적인 코딩 방식(동기식) public int InsertStasticsCnt(string ip) { string sql = "Insert into WebStatistics (Ip,Reg_date) values (@Ip, getdate())"; return db.Execute(sql); } // 비동기식 public async Task InsertStasticsCnt(string ip) { string sql = "Insert into WebStatistics (Ip,Re..
데이터 모델바이딩 관련해서 FromForm, FromBody, FromQuery 넘들이 있는데, 1. FromForm [POST 방식] Form태그로 둘러처진 name 과 value 값의 데이터들을 바인딩할 때 쓰인다. 2. FromBody [POST 방식] XML, Json, 일반 텍스트 형태의 데이터들을 바인딩할 때 쓰인다. 특히 API 설정시 유용하다. 3. FromQuery [GET 방식] URL의 QueryString 변수값을 받을 때 이에 대한 간단한 예제와 설명은 아래 포스팅 글을 참고하길 바란다. https://mbarkt3sto.hashnode.dev/aspnet-core-fromform-frombody-and-fromquery ASP.Net Core: FromForm, FromBody,..