protected void Page_Load(object sender, EventArgs e)
    {
        // Process online update
        Guid taskGuid = QueryHelper.GetGuid("taskguid", Guid.Empty);

        if (taskGuid != Guid.Empty)
        {
            // Run specific task
            WebSyncHelper.ProcessTask(taskGuid);
        }
        else
        {
            // Process all tasks for the given server
            WebSyncHelper.ProcessMyTasks();
        }
    }