Error.aspx
1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Error.aspx.cs" Inherits="Quiz.WebSite.Common.Error" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title></title>
<link href="/assets/reset.css" rel="stylesheet"/>
<link href="/assets/style.css" rel="stylesheet"/>
<script src="/assets/jquery-1.8.3.min.js"></script>
<style>
html{ height:100%;}
.header{ position:absolute;}
</style>
</head>
<body class="bodybg">
<header class="header">
<a class="back" onclick="history.back()"></a>
<div class="mid">全省大中小学师生禁毒防艾与食品卫生知识竞赛</div>
</header>
<section class="h-header"></section>
<section class="errorPage">
<img src="/images/error.png"/>
<% if (errmsg == "1")
{ %>
<p class="errorMsg">来源错误哟~</p>
<% }
else
{ %>
<p class="errorMsg">当前答题人数过多,请稍后...</p>
<a class="home">返回首页</a>
<% } %>
</section>
</body>
</html>