资源简介
c#消息实时提示框
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Web;
using System.Threading;
///
/// Summary description for AsnyHandler
///
public class AsnyHandler:IHttpAsyncHandler
{
public AsnyHandler()
{
}
public IAsyncResult BeginProcessRequest(HttpContext context AsyncCallback cb object extraData)
{
//myAsynResult为实现了IAsyncResult接口的类,当不调用cb的回调函数时,该请求不会返回到给客户端,会一直处于连接状态
myAsynResult asyncResult = new myAsynResult(context cb extraData);
String content = context.Request.Params[“content“];
//向Message类中添加该消息
Messages.Instance().AddMessage(content asyncResult);
return asyncResult;
}
#region 不必理会
public void EndProcessRequest(IAsyncResult result)
{
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2321 2010-04-27 14:57 Comet_by_ASP.NET\App_Code\AsnyHandler.cs
文件 1499 2010-04-27 14:56 Comet_by_ASP.NET\App_Code\Messages.cs
文件 770 2010-04-27 14:59 Comet_by_ASP.NET\Default.aspx
文件 209436 2009-10-07 12:26 Comet_by_ASP.NET\sc
文件 137220 2009-10-07 12:26 Comet_by_ASP.NET\sc
文件 69504 2009-10-07 12:26 Comet_by_ASP.NET\sc
文件 946 2010-04-27 14:07 Comet_by_ASP.NET\sc
文件 231 2010-04-27 14:59 Comet_by_ASP.NET\Web.config
目录 0 2010-04-27 13:30 Comet_by_ASP.NET\App_Code
目录 0 2010-04-26 09:39 Comet_by_ASP.NET\App_Data
目录 0 2010-04-26 13:54 Comet_by_ASP.NET\sc
目录 0 2010-04-27 14:03 Comet_by_ASP.NET
----------- --------- ---------- ----- ----
421927 12
- 上一篇:c# 显示系统当前时间
- 下一篇:C#与HALCON混合编程实现鼠标缩放与交互画图
评论
共有 条评论