ASP.NET中执行耗时操作的解决方案

在ASP.NET中可以利用多线程方式来达到同样的目的。
多线程

 代码如下 复制代码

<%@ Page language="c#" Codebehind="WebForm54.aspx.cs" AutoEventWireup="false" Inherits="csdn.WebForm54" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
 <HEAD>
  <title>WebForm54</title>
  <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
  <meta content="C#" name="CODE_LANGUAGE">
  <meta content="JavaScript" name="vs_defaultClientScript">
  <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
  <style type="text/css">
  .font { FONT-WEIGHT: normal; FONT-SIZE: 9pt; COLOR: #000000; FONT-FAMILY: "宋体", sans-serif; BACKGROUND-COLOR: #f0f0f0; TEXT-DECORATION: none }
  </style>
 </HEAD>
 <body>
  <form id="Form1" method="post" runat="server">
   <div id="div_load" runat="server">
    <table width="320" height="72" border="1" bordercolor="#cccccc" cellpadding="5" cellspacing="1"
     class="font" style="FILTER: Alpha(opacity=80); WIDTH: 320px; HEIGHT: 72px">
     <TR>
      <TD>
       <P><IMG alt="请等待" src="clocks.gif" align="left">
        <BR>
        <asp:Label id="lab_state" runat="server"></asp:Label></P>
      </TD>
     </TR>
    </table>
    <BR>
   </div>
   <asp:Button id="btn_startwork" runat="server" Text="运行一个长时间的任务"></asp:Button><BR>
   <BR>
   <asp:Label id="lab_jg" runat="server"></asp:Label>
  </form>
 </body>
</HTML>

后台修改如下:

 代码如下 复制代码

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace csdn
{
 /// <summary>
 /// WebForm54 的摘要说明。
 /// </summary>
 public class WebForm54 : System.Web.UI.Page
 {
  protected System.Web.UI.HtmlControls.HtmlGenericControl div_load;
  protected System.Web.UI.WebControls.Button btn_startwork;
  protected System.Web.UI.WebControls.Label lab_state;
  protected System.Web.UI.WebControls.Label lab_jg;
  protected work w;

  private void Page_Load(object sender, System.EventArgs e)
  {
   // 在此处放置用户代码以初始化页面
   if(Session["work"]==null)
   {
    w=new work();
    Session["work"]=w;
   }
   else
   {
    w=(work)Session["work"];
   }
   switch(w.State)
   {
    case 0:
    {
     this.div_load.Visible=false;
     break;
    }
    case 1:
    {
     this.lab_state.Text=""+((TimeSpan)(DateTime.Now-w.StartTime)).TotalSeconds.ToString("0.00")+" 秒过去了,完成百分比:"+w.Percent+" %";
     this.btn_startwork.Enabled=false;
     Page.RegisterStartupScript("","<script>window.setTimeout('location.href=location.href',1000);</script>");
     this.lab_jg.Text="";
     break;
    }
    case 2:
    {
     this.lab_jg.Text="任务结束,并且成功执行所有操作,用时 "+((TimeSpan)(w.FinishTime-w.StartTime)).TotalSeconds+" 秒";
     this.btn_startwork.Enabled=true;
     this.div_load.Visible=false;
     break;
    }
    case 3:
    {
     this.lab_jg.Text="任务结束,在"+((TimeSpan)(w.ErrorTime-w.StartTime)).TotalSeconds+"秒的时候发生错误导致任务失败'";
     this.btn_startwork.Enabled=true;
     this.div_load.Visible=false;
     break;
    }
   }
  }

  #region Web 窗体设计器生成的代码
  override protected void OnInit(EventArgs e)
  {
   //
   // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
   //
   InitializeComponent();
   base.OnInit(e);
  }
  
  /// <summary>
  /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  /// 此方法的内容。
  /// </summary>
  private void InitializeComponent()
  {   
   this.btn_startwork.Click += new System.EventHandler(this.btn_startwork_Click);
   this.Load += new System.EventHandler(this.Page_Load);

  }
  #endregion

  private void btn_startwork_Click(object sender, System.EventArgs e)
  {
   if(w.State!=1)
   {
    this.btn_startwork.Enabled=false;
    this.div_load.Visible=true;
    w.runwork();
    Page.RegisterStartupScript("","<script>location.href=location.href;</script>");
            
   }
  }
 }

 public class work
 {
  public int State=0;//0-没有开始,1-正在运行,2-成功结束,3-失败结束
  public int Percent=0;//完成百分比
  public DateTime StartTime;
  public DateTime FinishTime;
  public DateTime ErrorTime;

  public void runwork()
  {
   lock(this)
   {
    if(State!=1)
    {
     State=1;
     StartTime=DateTime.Now;
     System.Threading.Thread thread=new System.Threading.Thread(new System.Threading.ThreadStart(dowork));
     thread.Start();                        
    }
   }
  }

  private void dowork()
  {
   try
   {
    SqlConnection conn=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["conn"]);
    SqlCommand cmd=new SqlCommand("Insert Into test (test)values('test')",conn);
    conn.Open();
    for(int p=0;p<100;p++)
    {
     for(int i=0;i<10;i++)
     {
      cmd.ExecuteNonQuery();
     }
     Percent=p;//这里就是定义百分比,你估计这个操作费多少时间定义多少百分比
    }
    conn.Close();
    //以上代码执行一个比较消耗时间的数据库操作
    State=2;
   }
   catch
   {
    ErrorTime=DateTime.Now;
    Percent=0;
    State=3;
   }
   finally
   {
    FinishTime=DateTime.Now;
    Percent=0;
   }
  }
 }
}

网管管理中的耗时操作,往往又是重复性的操作。比如说生成静态页面,往往要周期性的重新生成一遍。这种任务,使用程序自动执行来完成更符合我们的要求。

在ASP.NET中使用多线程结合

代码
//  程序的定期任务,每个任务都实现ISchedulerWork

        public interface ISchedulerWork
        {
            void Execute();
        }

        //考核模块——考核个人通知邮件任务
        public class EmaiSendingJob : ISchedulerWork
        {
            public void Execute()
            {
                                ;

            }
        }

        //建立一个配置对象,用来存储要定期执行的任务和执行的时间间隔。
        public class SchedulerConfiguration
        {
            //时间间隔  每天执行一次
            private int sleepInterval;

            //任务列表
            private ArrayList jobs = new ArrayList();

            public int SleepInterval { get { return sleepInterval; } }
            public ArrayList Jobs { get { return jobs; } }

            //调度配置类的构造函数
            public SchedulerConfiguration(int newSleepInterval)
            {
                sleepInterval = newSleepInterval;
            }
        }

        //调度类,定时执行配置对象的任务
        public class Scheduler
        {
            private SchedulerConfiguration configuration = null;

            public Scheduler(SchedulerConfiguration config)
            {
                configuration = config;
            }

            public void Start()
            {
                while (true)
                {
                    //执行每一个任务
                    foreach (ISchedulerWork job in configuration.Jobs)
                    {
                        Thread myThread = new Thread(new ThreadStart(job.Execute));
                        myThread.Start();
                        Thread.Sleep(configuration.SleepInterval);
                    }
                }
            }
        }

在程序全局事件中:

代码
  protected void Application_Start(object sender, EventArgs e)
        {
            SchedulerConfiguration config =
                new SchedulerConfiguration(1000 * 60 * 60 * 23);

            config.Jobs.Add(new .EmailSendingJob());

            Scheduler scheduler = new Scheduler(config);

            schedulerThread = new System.Threading.Thread(new System.Threading.ThreadStart(scheduler.Start));
            schedulerThread.Start();

        }

  protected void Application_End(object sender, EventArgs e)
        {
            try
            {
                //程序退出时进行销毁
                if (schedulerThread != null)
                {
                    schedulerThread.Abort();
                }
            }
            catch
            {
                //operation
                ;
            }
        }

方法,就能实现类似windows计划任务的功能。从而实现0干预的管理。

 

在WEB应用程序中使用多线程执行任务,其环境跟普通的asp.net页面有一些不同。例如页面中的HttpContext在多线程程序中就不能正常使用。想使用这个对象怎么办呢?很简单,既然是对象,传过去就行了。

时间: 2024-10-04 20:35:03

ASP.NET中执行耗时操作的解决方案的相关文章

c#生成excel时提示“只能在同源AppDomain中执行动态操作”

问题描述 publicvoidmethod(){Microsoft.Office.Interop.Excel.Applicationexcelapp=NewMicrosoft.Office.Interop.Excel.Application();Microsoft.Office.Interop.Excel.Workbookworkbook;Microsoft.Office.Interop.Excel.Worksheetworksheet;excelapp.visible=false;workbo

asp.net中执行存储数据操作时数据被自动截取的一种情况

asp.net|数据|执行 今天在做东西的时候,发现一个很奇怪的问题,数据库(SqlServer)中的字段设置的类型为ntext,但是保存的数据总是很短,开始以为在程序的某段设置了长度限制,在设置了断点跟踪调试发现穿递的数据很正常,但是在执行了存储操作以后保存的内容总是很短,数了数保存的字符个数为16个,数据库中设置的该字段类型ntext的长度也为16,于是想是不是数据库的bug,就在查询分析器里写insert语句进行测试,结果发现保存的内容很正常,这样问题肯定在程序当中,最后检查到在构造Sql

在 ASP.NET 中执行 URL 重写

asp.net|执行 Scott Mitchell 4GuysFromRolla.com 适用范围: Microsoft ASP.NET 摘要:介绍如何使用 Microsoft ASP.NET 执行动态 URL 重写.URL 重写是截取传入 Web 请求并自动将请求重定向到其他 URL 的过程.讨论实现 URL 重写的各种技术,并介绍执行 URL 重写的一些实际情况. 下载本文的源代码. 本页内容 引言 URL 重写的常见用法 请求到达 IIS 时将会发生什么情况 实现 URL 重写 构建 UR

ASP.NET中数据库的操作初步----增加、删除、修改

asp.net|数据|数据库 注意:本文暂时不讲解数据库的数据调出和显示,因为他涉及的东西比较多,所以我们将另外详细讲解.本文主要要讲的是数据库的增加.删除.修改. 一.定义OleDbCommand类型变量:MyCommand 要对数据库进行增加.删除.修改的操作我们还需要根据MyConnectio的类型定义一个OleDbCommand或者SqlCommand对象(请注意如果MyConnection是OleDbConnection类型,那么只能用OleDbCommand:如果MyConnecti

asp.net-easyui datagrid 执行搜索操作后页面仍然显示原数据

问题描述 easyui datagrid 执行搜索操作后页面仍然显示原数据 用的平台是asp.net,初始化不带参数的查询时数据能正常显示,在datagrid上面的搜索栏输入参数 执行搜索功能,表格刷新以后仍然是原来的数据,但后台传过来的json确实是查询参数筛选的数据, 格式也是正确的,但刷新后就是原来的数据,这是因为什么? 解决方案 你怎么知道后台回传的数据是正确的.用开发工具看过了?而且你怎么查询的reload或者load附带参数?$('#xxx').datagrid('reload',{

使ASP.NET中的数据库操作变得简单

asp.net|数据|数据库 作者:Willmove 主页:http://www.amuhouse.com E-mail: willmove@gmail.com 声明:系作者原创作品,转载请注明出处. ASP.NET中一般都是使用SQL Server作为后台数据库.一般的ASP.NET数据库操作示例程序都是使用单独的数据访问,就是说每个页面都写连接到数据库,存取数据,关闭数据库的代码.这种方式带来了一些弊端,一个就是如果你的数据库改变了,你必须一个页面一个页面的去更改数据库连接代码. 第二个弊端

asp.net中Silverlight文件操作

提到Silverlight中的文件操作,第一个肯定是独立存储Isolated Store,这个东东相当于于一个本地的小型存储空间,通过它可以把一些不重要的数据(用户的一些配置信息或者文件) IsolatedStorageFile: 保存在客户端,由于这个空间是可以在本地查看得到,同时用户也可以随意的删除这些文件件以及文件,所以不要存放重要的信息. IsolatedStorageFile.GetUserStoreForApplication();得到基于当前用户和当前应用程序的IsolatedSt

asp.net中cookie的操作(删除,修改,查找,赋值)

下面分享一下对cookies的简单操作 1.添加cookies(用cookies方式去做sso,用户信息保存,修改都会依赖cookies)    代码如下 复制代码 #region##添加cookeis     ///<summary>     /// 添加cookeis     ///</summary>     public void AddCookies()     {         HttpCookie cookies = new HttpCookie("Por

ASP.NET 中执行 URL 重写

asp.net|执行   URL 重写就是把URL地址重新改写      详情:http://www.microsoft.com/china/msdn/library/webservices/asp.net/URLRewriting.mspx      优点:把url缩短等      用法:1.下载ms的URLRewrite.dll,放到你的bin下      2.在web.config里设置如下:      <?xml version="1.0" encoding="