HaPpY hApPy
Chrome, FF, Edge에서는 캐쉬 문제가 발생하지 않는데 IE 11에서만 Cache 문제 발생시Request header에 밑에 추가해주면 해결. append("Pragma", "no-cache");append("Cache-Control", "no-cache");append("If-Modified-Since", "Wed, 21 Oct 1900 07:28:00 GMT"); 참고사이트https://support.microsoft.com/en-us/help/234067/how-to-prevent-caching-in-internet-explorer
아래 방법으로 해서 고침.. Follow the path: Trouble Shoot > Advanced Options >Command PromptEnter the following command line to check the disk partition for errors: chkdsk/f /r X:( drive letter)Try using the following command lines to rebuild the BCD store and see if it helps. CMD> bootrec /scanos CMD> bootrec /rebuildbcd CMD> bootrec /fixmbr CMD> bootrec /fixboot
정확한 원인은 모르지만, 잘 돌아가던 DB 하나가 맛탱이 가더니 갑자기 안돌아감. 아래 링크 주소 방법으로 시도중 Take Offline이 안됨.http://www.sqlservice.se/dont-panic-the-log-for-database-name_here-is-not-available/ 다시 검색해서 아래 사이트에서 방법찾음. (추천 제일 많이 받은 답변)https://stackoverflow.com/questions/808232/extreme-wait-time-when-taking-a-sql-server-database-offline 아래 명령어 하면 강제 종료 된다고 해서 사용(아마 Rollback 하면서 종료되는듯,,추천 젤 많이 받았으니 안전 하겠지?) ALTER DATABASE [Sta..
var host = new WebHostBuilder() .UseUrls("http://*:5000;") .UseKestrel() .UseContentRoot(Directory.GetCurrentDirectory()) .UseIISIntegration() .UseStartup() .Build(); host.Run(); 그리고 아래에 보라색 추가. "start": "concurrently \"webpack-dev-server --env=dev --hot --inline --port 8080 --host 192.168.254.77\" \"dotnet run\" ",