HTTP 파일 업로드 주의 점

HttpWebRequest 를 사용 하여 큰 파일 을 업로드 할 때 서버 설정 에서 다음 노드 설정 이 필요 합 니 다.
<system.web>
    <compilation debug="true" targetFramework="4.0" />
    <httpRuntime maxRequestLength="100000000" executionTimeout="600">httpRuntime>
system.web>
<system.webServer>
    <security>
      <requestFiltering>
        
        <requestLimits maxAllowedContentLength="2147483647" />
      requestFiltering>
    security>
  system.webServer>

그렇지 않 으 면 서버 에서 404 로 돌아 가 는 오류 가 발생 할 수 있 습 니 다.
다음으로 전송:https://www.cnblogs.com/xiaotiannet/p/4906701.html

좋은 웹페이지 즐겨찾기