ScheduleNotice.aspx
上传用户:autodoor
上传日期:2022-08-04
资源大小:9973k
文件大小:3k
- <%@ Page language="c#" Codebehind="ScheduleNotice.aspx.cs" AutoEventWireup="false" Inherits="qminoa.Webs.Schedule.ScheduleNotice" 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">
- <table border=0 background="..images/mail_note.gif" height="100%" align=center>
- <tr><td>
- <IMG src="../img/button/schtime.gif"><asp:Label id="Label1" runat="server" ForeColor="#C04000" Font-Size="Larger" Font-Bold="True" EnableViewState="False">提 醒</asp:Label><hr>
- </td></tr>
- <tr><td>
- <asp:Label id="lblTitle" Runat="server" Font-Size=10></asp:Label>
- </td></tr><tr><td>
- <asp:Label id="lblTotal" Runat="server" Font-Size=10 ForeColor=#3300cc></asp:Label>
- </td></tr><tr><td align=center>
- <BUTTON id="btnExit" onclick="javascript:void(0);window.close();" type="button" runat="server">退出</BUTTON>
- </td></tr></table>
- </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()
- }
- }
- </script>
- </TABLE>
- </body>
- </HTML>