温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:星幻短信群发平台Web源码
当前文件路径:XingHuanWebSms/Top.aspx

1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Top.aspx.cs" Inherits="SMS_Top" enableSessionState="true"%> 2
3
<html xmlns="http://www.w3.org/1999/xhtml" > 4
<head runat="server"> 5
<title>无标题页</title> 6
<script language="javascript"> 7
8
function getMoney() 9
{ 10
//alert('11'); 11
SMS_Top.GetMoney(callback); 12
} 13
function callback(response) 14
{ 15
16
if(response.error !="") 17
{ 18
alert(response.error); 19
return; 20
} 21
22
var art = response.value; 23
24
if(art == null) 25
{ 26
return; 27
} 28
var aArr=art.split('|'); 29
///document.getElementById("v_money").innerHTML="当前金币:<font color=red>"+aArr[0]+"</font>"; 30
document.getElementById("v_queue").innerHTML="等待队列:<font color=red>"+aArr[1]+"</font>条"; 31
//alert(art); 32
33
} 34
function work() 35
{ 36
setInterval("getMoney()",5000); 37
} 38
39
</script> 40
<link href="CSS/style.css" type="text/css" rel="stylesheet" /> 41
</head> 42
<body onLoad="javascript:work();"> 43
<form id="form1" runat="server"> 44
<div> 45
<table width="100%" border="0" cellspacing="0" cellpadding="0"> 46
<tr> 47
<td height="42" colspan="3" align="center" style="background-image:url('images/sms_bg.gif')"> 48
<span style="font-size: 16pt; color: #ffffcc"><strong>星幻短信平台 (beta v1.0)</strong></span></td> 49
</tr> 50
<tr> 51
<td width="61%" height="20" align="left" bgcolor="#F5F7FB">欢迎【<font color=blue><%=Rname%></font>】登陆,Ip:<%=Lip%><span 52
style="color: #000099"></td> 53
<td width="10%" align="center" bgcolor="#F5F7FB"><div id="v_money"></div></td> 54
<td width="29%" align="left" bgcolor="#F5F7FB"><div id="v_queue"></div></td> 55
</tr> 56
</table> 57
</div> 58
</form> 59
</body> 60
</html> 61




}
