易截截图软件、单文件、免安装、纯绿色、仅160KB

asp.net在线人数统计

有人也问了个在线统计的问题,我的见意是这样的:  
  在Application_Start事件中加入以下代码:  
  Application.Lock();  
  Application.["UserCount"]=0;  
  Application.Unlock();  
   
  Session_Start事件中加入以下代码:  
  Application.Lock();  
  Application["UserCount']=Int32.Parse(Application["UserCount"].Tostring())+1;  
  Application.UnLock();  
   
  Session_End事件中加入以下代码:  
  Application.Lock();  
  Application["UserCount"]=Int32.Parse(Application["UserCount"].Tostring())-1;  
  Application.UnLock();  
   
   
  在要显示的地方写个函数加入以下代码:  
  Response.Write(Application["UserCount"].Tostring());  
   
  这就OK了


相关文档:

在ASP.NET中,如何实现点击按钮弹出新窗口.刷新父窗口

 a.aspx
//显示某个订单的详细信息,通过一个模态对话框,而且屏幕会变颜色
        function ShowOrderDetails(orderId) {
            var url = "AddMenu.aspx?ID=" + orderId;
     &n ......

ASP.NET 配置节架构

ASP.NET 配置节架构包含控制 ASP.NET Web 应用程序行为的元素。如果为属性指定了默认值,则该默认值是在 Machine.config 文件中设置的,该文件的路径是 systemroot\Microsoft.NET\Framework\versionNumber\CONFIG\Machine.config。
<configuration>
   <location>
      ......

ASP.net中Timer和WebService的使用

 示例一
在Global.asax.cs文件中: 
 protected void Application_Start(Object sender, EventArgs e)
      {
               System.Timers.Timer timer1 = new System.Timers.Timer();
 &nbs ......

ASP.NET MVC介绍

The Model-View-Controller (MVC) architectural pattern separates an application into three main components: the model, the view, and the controller. The ASP.NET MVC framework provides an alternative to the ASP.NET Web Forms pattern for creating MVC-based Web applications. The ASP.NET MVC framework is ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号