콘텐츠로 건너뛰기
» aspnet

aspnet

What’s new in ASP.NET Core 2.2

Let’s dive into what’s new in ASP.NET Core! In this session we’ll take a look at the new features in the latest ASP.NET Core preview, including improved support for building descriptive Web APIs, HTTP/2, a new in-process IIS hosting, support

.Net

Set max request size on asp.net

IIS 7+ 에서 운영되는 ASP.NET 웹 응용프로그램의 web.config 에 아래와 같이 설정합니다.

<system.web>
    <httpRuntime maxRequestLength="153600" executionTimeout="900" />
</system.web>

<system.webServer>
    <security>
        <requestFiltering>
                <requestLimits maxAllowedContentLength="157286400" />
             </requestFiltering>
    </security>
</system.webServer>

system.web > httpRuntime 의 maxRequestLength 는 ASP.NET 웹 응용프로그램이 허용하는 파일의 크기를 설정합니다. …

.Net

교차-원본 자원 공유

웹 브라우저는 보안을 위해서 동일 원본 정책(Same-Origin Policy, 특정 웹페이지에서 다른 도메인으로 AJAX 요청을 전송하는 것을 금지)을 강제합니다.

교차-원본 자원 공유(CORS, Cross-Origin Resource Sharing)는 W3C의 표준으로, 서버가 동일 원본 정책을 유현하게 우회할 수 있게 합니다. 즉, CORS를 사용하면 서버에서 …

.Net

FCK Editor 2.6.3. for ASP.NET

FCKeditor 그리고 FCKeditor.Net Latest version을 내려받습니다.

필요파일

  1. FCKeditor_2.6.3.zip 또는 FCKeditor_2.6.3.tar.gz
  2. FCKeditor.Net_2.6.3.zip

FCKeditor_2.6.3.zip 압축을 해제하고 fckeditor 폴더 내용 전체를 Site의 적당한 위치에 업로드 합니다.

fckeditor_samples 은 없어도 문제없습니다.

  • bin\Release\1.1\FredCK.FCKeditorV2.dll – asp.net 1.1 에서 사용
  • bin\Release\2.0\FredCK.FCKeditorV2.dll – asp.net 2.0 에서 사용