라벨이 Security Warning인 게시물 표시

[WPF][WebBrowser] Allow Blocked Content Setting

<현상> WebBrowser에서 로컬웹문서를 열경우 아래와 같은 보안경고창이 뜬다.  - 보안을 위해 사용자의 웹 브라우저가 이파일에서 사용자의 컴퓨터를 액세스할수 있는 액티브 콘텐츠를 표시하는 것을 차단했습니다. 옵션을 보려면 여기를 클릭하십시오. <해결 방법> Mark of the Web (MOTW)을 웹문서 상단에 추가하면 된다. 1. <!-- saved from url=(0014)about:internet --> 2. <!-- saved from url=(0011)about:blank --> 3. <!-- saved from url=(0016)http://localhost --> 4. <!-- saved from url=(0027)http://imsoli.blogspot.com/ -->   * 참고로 url=(####) 의 숫자는 읽어들이는 길이를 나타낸다. <!-- saved from url=(0016)http://localhost1234 --> => "1234"는 무시한다. <예제> Sample.html  ---------- ---------- ---------- ---------- ---------- ---------- ---------- ----------  <!doctype html>  <!-- saved from url=(0027)http://imsoli.blogspot.com/ -->  <html>    <head>      <title>A Mark of the Web Sample.</title>    </head>    <body>       ...