mirror of
https://github.com/rvtr/debug-dsi-shop.git
synced 2025-10-31 06:01:07 -04:00
28 lines
814 B
HTML
28 lines
814 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>GetMessage</title>
|
|
<link rel="stylesheet" type="text/css" href="/common/css/default.css">
|
|
<script type="text/javascript" src="default.js"></script>
|
|
<script>
|
|
|
|
function ShowErrorPage()
|
|
{
|
|
var id = document.getElementById("err_code").value;
|
|
if (id >= 1) {
|
|
if (id <= 3) {
|
|
window.top.open("/error/E_0"+id+"_index.html","_self")
|
|
}
|
|
}
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>ShowErrorPage</h1>
|
|
<input id="err_code" type="text" size="3" maxlength="1" onClick="ActiveKeyboard(0, 'Error Code')" value="0"><br>
|
|
<button onClick="ShowErrorPage()">ShowErrorPage</button><br>
|
|
</body>
|
|
</html>
|