닷넷/ASP.NET MVC
-
asp.net mvc File download (파일 다운로드)닷넷/ASP.NET MVC 2021. 2. 23. 17:36
asp.net mvc 사이트에서 다운로드 버튼을 누르면 파일을 다운로드 받을 수 있게 하려면 index.cshtml에서 (혹은 파일 다운로드가 존재 할 cshtml) 엑셀서식 다운로드 HomeController.cs에서 (혹은 해당 액션과 연결된 Controller) public ActionResult DownloadFile(string filePath) { // 다운로드 되어야 할, 서버에 존재하는 파일 경로 string fullName = Server.MapPath("~/Files/" + filePath); byte[] fileBytes = GetFile(fullName); return File(fileBytes, System.Net.Mime.MediaTypeNames.Application.Octet..
-
asp.net mvc ajax에서 controller로 post 한 후 controller에서 ajax로 성공 또는 오류 메시지 리턴하는 방법닷넷/ASP.NET MVC 2021. 2. 17. 18:03
How to return string message after post using ajax call in ASP.NET MVC ASP.NET MVC에서 ajax 호출을 사용하여 게시 후 문자열 메시지를 반환하는 방법 = ajax에서 controller로 post 한 후 controller에서 ajax로 성공 또는 오류 메시지 리턴하는 방법 https://www.codeproject.com/Questions/1182026/How-to-return-string-message-after-post-using-ajax How to return string message after post using ajax call in ASP.NET MVC - CodeProject CodeProject, 20 Bay Stree..