asp.net 即时消息提示的实现代码

发布时间:2019-07-27编辑:脚本学堂
本文介绍下,asp.net中实现即时消息提示的代码,有需要的朋友参考下。

网站在线即时短消息功能,实现如下。

数据表:
user:
Uid UName Password 三个字段
Message:
Mid, SenderId, ReceiverId, State, Detail(SenderId和 ReceiverId)都是外键且对应user表中的Uid。

思路:用js每隔五秒钟发送一次ajax请求,获取当前用户在Message表中State为未读取(这里约定为数字1)且ReceverId为当前用户ID的Message 记录的数量。

1,页面代码:
 

复制代码 代码示例:
<%@ Page Language="C#" CodeBehind="Default.aspx.cs" Inherits="MIDemo._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>即时消息-www.jb200.com</title>
    <!-- 两个js脚本文件-->
    <script type="text/javascript" src="SqlHelp/jquery-1.3.2.js"></script>
    <script type="text/javascript" src="SqlHelp/GetMessageCount.js"></script>
</head>
<body>
    <form id="form1" runat="server">
    <div style=" border-color:Green; border-style:solid; margin-top:100px; margin-left:300px; width:300px; height:50px; text-align:center;">
        您有<input type="text" value="0" id="messageCount"/><a href="ShowMessage.aspx">条短消息</a>
    </div>
    </form>
</body>
</html>

2,js代码,文件:GetMessageCount.js
注意引入外部jquery文件。
 

复制代码 代码示例:

//------GetMessageCount.js Begin-----
if(!GetMessageCount){
    var GetMessageCount = {};
}

$(document).ready(
    function(){
        GetMessageCount.FindMessage();
    }
);

GetMessageCount.FindMessage = function(){
        $.ajax({
           //处理ajax请求
           url:'FindNewMessage.ashx',
           //当前用户的ID,这里图省事就省略了,直接写死为 1,
           //实际使用过程中可以从session中获取 。。。。
           data:{Uid:1},
           cache: false,
           //回调函数返回未读短信数目
           success: function(response)
           {
              $('#messageCount').val(response);
           },
           error:function(data)
           {
               alert("加载失败");
           }
       });
       //每隔5 秒递归调用一次,刷新未读短信数目
       window.setTimeout(GetMessageCount.FindMessage,5000);核心语句
}
//------GetMessageCount.js End----
 

3,处理ajax请求页面的代码,文件:FindNewMessage.ashx。
 

复制代码 代码示例:

//---'FindNewMessage.ashx Begin
using System;
using System.Collections;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Xml.Linq;

namespace MIDemo
{
    /// <summary>
    /// $codebehindclassname$ 的摘要说明
    /// </summary>
    [WebService(Namespace = "http://jb200.com/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    public class FindNewMessage : IHttpHandler
    {
        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
              //获取未读短信的数量,返回页面
              //后台的sql代码就省略了
            int count = SqlHelp.SqlHelp.GetUnreadMessageCount(Convert.ToInt32(context.Request["Uid"]));
            //返回页面
            context.Response.Write(count);
        }
        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}
//---'FindNewMessage.ashx End