유발소스
ASP.NET MVC
/Controller/FileController.cs
public string storageRoot { get; set; } public FileController() { storageRoot = Server.MapPath("~/App_Data/Upload"); } public FileController(ServerPathProvider pathProvider) { storageRoot = pathProvider.MapPath(); } public string DoSomething(string path1, string path2, string filename) { return StorageRoot + "\\" + path1 + "\\" + path2 + "\\" + filename; }수정
public string StorageRoot { get; set; } public FileController(){} public FileController(ServerPathProvider pathProvider) { storageRoot = pathProvider.MapPath(); } public string DoSomething(string path1, string path2, string filename) { storageRoot = Server.MapPath("~/App_Data/Upload"); return StorageRoot + "\\" + path1 + "\\" + path2 + "\\" + filename; }
'Web_Application > ASP.NET MVC' 카테고리의 다른 글
bundle 403 error (0) | 2017.02.03 |
---|---|
Log4net 설치 (0) | 2017.01.17 |
Error 1053: "The service did not respond in a timely fashion" when attempting to start, stop or pause a service (0) | 2016.12.29 |
Upgrading mvc4 to mvc5 in vs2013 (0) | 2016.12.17 |
JSON JavaScriptSerializer를 사용하여 serialize 또는 deserialize하는 동안 오류가 발생했습니다. 문자열의 길이가 maxJsonLength 속성에 설정된 값을 초과합니다. (0) | 2016.10.10 |