You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.0 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
<script src="lib/jquery/jquery-1.5.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
function load()
{
var c = getQueryString("c");
if (c != null && c != "") {
window.location.href = "Web/Site/Index.aspx?c="+c;
} else {
window.location.href = "Web/Site/Index.aspx";
}
}
///获取QuertString
function getQueryString(name) {
var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i');
var r = window.location.search.substr(1).match(reg);
if (r != null) {
return unescape(r[2]);
}
return null;
}
</script>
</head>
<body onload="load()">
</body>
</html>