English 中文(简体)
网上应用启动时间
原标题:Start timer on web application start
  • 时间:2010-06-08 19:55:59
  •  标签:
  • c#
  • asp.net

我愿在我发射时(或许部署是正确的词)申请中启动<条码>系统。 我已经看到,你可以使用<代码>Application_Start(),但这只是。 一俟第一次申请提交。 我需要时间,一旦提出申请,就立即开始工作,以便检查工作,即使用户与网站没有互动。 我怎样才能申请在时间开始和运行之后开始时间?

最佳回答

申请的起步实际上是在 app起和运行时发生火灾。 您面临的问题是,国际独立实体在收到第一次申请之前实际上没有开始申请。

了解的另一个重要方面是:国际独立调查局由于无所作为而关闭了你。 如果你需要掌握所有时间的话,你可能会寻找一种不同于伙伴关系的工具。 NET应用软件。 也许需要视窗服务,甚至安排任务。

问题回答

你可以使用新的伙伴关系。 http://code>AlwaysRunning。 这样一来,它就不得不等待第一次申请开始。

<applicationPools>
     <add name="MyAppWorkerProcess" managedRuntimeVersion="v4.0" 
         startMode="AlwaysRunning" />
</applicationPools> 

。 http://www.asp.net/learn/whitepapers/aspnet4

这是一种正常的行为——申请需要由申请网页的人“夸大”。

在IIS 7.5和更高层次(例如,2008/win7)中,有这样的特征:见http://udiostmagazine.com/articles/ 201002/18/preloading-aspnet-applications.aspx”rel=“nofollow noreferer”http://udiostmagazine.com/articles/ 201002/18/preloading-aspnet-applications.aspx。

在其他伙伴关系中。 该网络的服务器,如我公司提供的服务器(在线网址:www.neokernel.com),通过具体说明某些网页,这些网页将使用服务器配置文件进行预装。 基本上,这页已经传给协会。 该网络处理管道,并在任何人要求与该网页有关的URL之前汇编/数据。

一种办法是利用 Java的代谢法启动时间。 这需要在每一页上实现,以便你把它放在主页上。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签