Anders Hattestad
Nov 18, 2009
  11494
(0 votes)

Running long admin tasks

Some times I’m making some admin task that takes a long time to execute. Since I’m a bit lacy I made some generic code to help me to move the execution to a different thread and displays a progress bar, and when finished displays the result.

I know there is methods with Ajax frameworks that can resolve this, but I wanted more control on the actually thread.

I have made the code like a web control that you can embed around you existing user control like this

<Itera:DoInThread runat="server" id="test" CacheResultFor="1" ThreadFor="Session">
    <uc1:test ID="test2" runat="server" />
    <uc1:test ID="test1" runat="server" />
</Itera:DoInThread>

The DoInThread control will instead of adding the sub controls to it self add them to a list of controls. Then a background thread will start and execute the Page_Load method on each control. (Yes I know there are other functions that should have been executed, but I only needed Page_Load :))

I then add a IFrame pointing to a different page imagethat will display the progress on the thread. The progress is found by trying to execute a Progress function on each of the sub controls and return the text as the progress text. The IFrame page will reload every second or so to update the progress. After the content is generated it will by using JavaScript replace the owner div of the IFrame with the content.

The IFrame points to a Threads.aspx page and you need to add this in the web.config to see the generated content and progress.

<system.webServer>
  <handlers>
    <add name="Threads" path="Threads.aspx" verb="GET" type="Itera.Threads.HttpHandler.SubResults,Itera.Threads" />
    </handlers>
</system.webServer>
and to use the Itera:Threads
<pages validateRequest="false" enableEventValidation="false" >
  <controls>
    <add tagPrefix="Itera" namespace="Itera.Threads.WebControls" assembly="Itera.Threads" />
  </controls>
</pages>

Download the project

PS: Objectware is recruiting!

look here for more information

http://www.finn.no/finn/job/object?finnkode=19881777

Nov 18, 2009

Comments

Please login to comment.
Latest blogs
Opti ID overview

Opti ID allows you to log in once and switch between Optimizely products using Okta, Entra ID, or a local account. You can also manage all your use...

K Khan | Jul 26, 2024

Getting Started with Optimizely SaaS using Next.js Starter App - Extend a component - Part 3

This is the final part of our Optimizely SaaS CMS proof-of-concept (POC) blog series. In this post, we'll dive into extending a component within th...

Raghavendra Murthy | Jul 23, 2024 | Syndicated blog

Optimizely Graph – Faceting with Geta Categories

Overview As Optimizely Graph (and Content Cloud SaaS) makes its global debut, it is known that there are going to be some bugs and quirks. One of t...

Eric Markson | Jul 22, 2024 | Syndicated blog

Integration Bynder (DAM) with Optimizely

Bynder is a comprehensive digital asset management (DAM) platform that enables businesses to efficiently manage, store, organize, and share their...

Sanjay Kumar | Jul 22, 2024

Frontend Hosting for SaaS CMS Solutions

Introduction Now that CMS SaaS Core has gone into general availability, it is a good time to start discussing where to host the head. SaaS Core is...

Minesh Shah (Netcel) | Jul 20, 2024

Optimizely London Dev Meetup 11th July 2024

On 11th July 2024 in London Niteco and Netcel along with Optimizely ran the London Developer meetup. There was an great agenda of talks that we put...

Scott Reed | Jul 19, 2024