📄 messagenotice.aspx
字号:
<%@ Page language="c#" Codebehind="MessageNotice.aspx.cs" AutoEventWireup="false" Inherits="qminoa.Webs.Msg.MessageNotice" codePage="936" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>MessageNotice</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio 7.0">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=gb2312">
</HEAD>
<body MS_POSITIONING="GridLayout" onload="movePFW()">
<form id="MessageNotice" method="post" runat="server">
<DIV style="Z-INDEX: 101; LEFT: 0px; BACKGROUND-IMAGE: url(image/mail_note.gif); WIDTH: 208px; POSITION: absolute; TOP: 0px; HEIGHT: 186px" ms_positioning="GridLayout">
<asp:Label id="lblTitle" style="Z-INDEX: 101; LEFT: 43px; POSITION: absolute; TOP: 53px" Runat="server" EnableViewState="False">请查收您的信息!</asp:Label>
<asp:Label id="Label1" style="Z-INDEX: 108; LEFT: 76px; POSITION: absolute; TOP: 31px" runat="server" ForeColor="#C04000" Font-Size="Larger" Font-Bold="True" EnableViewState="False">通 知</asp:Label>
<asp:Label id="lblTotal" style="Z-INDEX: 102; LEFT: 44px; POSITION: absolute; TOP: 72px" Runat="server"></asp:Label>
<asp:Label id="lblNew" style="Z-INDEX: 103; LEFT: 43px; POSITION: absolute; TOP: 91px" Runat="server"></asp:Label>
<asp:Label id="lblOld" style="Z-INDEX: 104; LEFT: 43px; POSITION: absolute; TOP: 110px" Runat="server"></asp:Label><BUTTON id="btnSee" style="Z-INDEX: 105; LEFT: 96px; POSITION: absolute; TOP: 139px" onclick="javascript:void(0);See();" type="button" runat="server">查收信息</BUTTON><BUTTON id="btnExit" style="Z-INDEX: 106; LEFT: 33px; POSITION: absolute; TOP: 139px" onclick="javascript:void(0);window.close();" type="button" runat="server">退出</BUTTON><IMG style="Z-INDEX: 107; LEFT: 16px; POSITION: absolute; TOP: 0px" alt="" src="image/0000.gif"></DIV>
<br>
<br>
<br>
<br>
</form>
<script language="javascript">
window.resizeTo(220,210);
var windowW=220 // wide
var windowH=210 // high
var Yoffset=0 // in pixels, negative values allowed
var windowStep=2 // move increment (pixels)
var moveSpeed=12 // move speed (larger is slower)
Xoffset=25;
var windowX = (screen.width/2)-(windowW/2);
windowX=screen.availWidth-Xoffset-windowW;
var windowY = (screen.availHeight);
var windowYstop = windowY-windowH-Yoffset;
var windowYnow = windowY;
window.focus ();
resizeTo(windowW,windowH);
moveTo(windowX,windowY);
function movePFW()
{
if (document.all)
{
if (windowYnow>=windowYstop){
moveTo(windowX,windowYnow);
windowYnow=windowYnow-windowStep;
timer=setTimeout("movePFW()",moveSpeed);
}
else
{
clearTimeout(timer);
setTimeout("moveBack()",120000 )
moveTo(windowX,windowYstop);
}
}
else
{
moveTo(windowX,windowYstop);
}
}
function moveBack()
{
if (document.all)
{
if (windowYnow<=windowY)
{
moveTo(windowX,windowYnow);
windowYnow=windowYnow+windowStep;
timer1=setTimeout("moveBack()",moveSpeed);
}
else
{
clearTimeout(timer1);
moveTo(windowX,windowY);
self.close()
}
}
else
{
moveTo(windowX,windowYstop);
self.close()
}
}
function See()
{
window.opener.location= "MessageList.aspx?MsgBox=recnote";
window.close();
}
</script>
</body>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -