<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
function ZiXun() {
window.location("Default2.aspx");//跳转到另一个页面
}
function Later1() {
document.getElementById('Start').style.display = "block";//显示div
}
function Later() {
document.getElementById('Start').style.display = "none";//隐藏div
setTimeout(Later1, 5000);//定时显示
}
</script>
<style type="text/css">
#Button2
{
width: 119px;
height: 31px;
}
#Button1
{
width: 127px;
height: 32px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div id="all">
<div id="Start" style="width: 502px; height: 262px; background-image: url('Images/Call.bmp');">
<input id="Button1" style="background-color: #FFFF00; color: #FF0000"
type="button" value="点击咨询" οnclick="ZiXun()"/>
<input id="Button2" style="background-color: #FFFF00; color: #FF0000"
type="button" value="稍后再说" οnclick="Later()"/></div>
</div>
</form>
</body>
</html>