Created
September 6, 2022 01:30
-
-
Save hyunbinseo/e0b6154a4df294939206e3f3bce9cd96 to your computer and use it in GitHub Desktop.
Internet Explorer Error Page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="NewErrorPageTemplate.css"> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title>이 페이지에 연결할 수 없음</title> | |
<script src="errorPageStrings.js" language="javascript" type="text/javascript"> | |
</script> | |
<script src="httpErrorPagesScripts.js" language="javascript" type="text/javascript"> | |
</script> | |
</head> | |
<body onLoad="getInfo(); initMoreInfo('infoBlockID');"> | |
<div id="contentContainer" class="mainContent"> | |
<div id="mainTitle" class="title">이 페이지에 연결할 수 없음</div> | |
<div class="taskSection" id="taskSection"> | |
<ul id="cantDisplayTasks" class="tasks"> | |
<li id="task1-1"> | |
웹 주소 <span id="webpage" class="webpageURL"></span>이(가) 올바른지 확인하세요. | |
</li> | |
<li id="task1-2">Bing에서 이 페이지 검색</li> | |
<li id="task1-3"><a href="javascript:location.reload();">페이지 새로 고침</a></li> | |
</ul> | |
<ul id="notConnectedTasks" class="tasks" style="display:none"> | |
<li id="task2-1">모든 네트워크 케이블이 연결되어 있는지 확인하세요.</li> | |
<li id="task2-2">비행기 모드가 꺼져 있는지 확인하세요.</li> | |
<li id="task2-3">무선 스위치가 켜져 있는지 확인하세요.</li> | |
<li id="task2-4">모바일 광대역에 연결할 수 있는지 확인하세요.</li> | |
<li id="task2-5">라우터를 다시 시작하세요.</li> | |
</ul> | |
</div> | |
<div id="moreInformationAlign" align="왼쪽" aria-labelledby="moreInformation"> | |
<table> | |
<tr> | |
<td valign="top" aria-labelledby="infoBlockIDImage"> | |
<a href="#" onclick="javascript:expandCollapse('infoBlockID', true); return false;"> | |
<img src="down.png" id="infoBlockIDImage" border="0" class="actionIcon" alt="추가 정보"> | |
</a> | |
</td> | |
<td valign="top"> | |
<span id="moreInfoContainer"></span> | |
<noscript> | |
<id id="moreInformation">추가 정보</id> | |
</noscript> | |
</td> | |
</tr> | |
</table> | |
<div id="infoBlockID" class="infoBlock" style="display: none"> | |
<p id="subError" class="BodyTextBlockStyle" style="margin-left:20px"></p> | |
<p id="ErrorCode" class="BodyTextBlockStyle" style="margin-left:20px"></p> | |
</div> | |
</div> | |
<br /> | |
<div id="diagnoseOptions"> | |
<button | |
id="diagnose" | |
class="diagnoseButton" | |
onclick="javascript:diagnoseConnectionAndRefresh(); return false;" | |
> | |
연결 문제 진단 | |
</button> | |
</div> | |
<br /> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment