protected void Page_Load(object sender, EventArgs e)
    {
        FileLog objEventLog = (FileLog)Application["EventLog"];
        ExceptionLog objExceptionEventLog = (ExceptionLog)Application["ExceptionEventLog"];

        DIBSDataProcessor objProcessor = new DIBSDataProcessor(objEventLog, objExceptionEventLog, true);
        objProcessor.ProcessCallback(Page.Request);

        string strEchoData = "";

        if (Request.QueryString.Get("ed") != null)
            strEchoData = Request.QueryString.Get("ed");

        WBSMonitor wbsMonitor = WBSMonitor.GetWbsMonitor(Context.Cache, objEventLog, objExceptionEventLog, XnGR_WBS_Page.IsProductionMode(), (int)Application["WBSMonitor.ExpirationSeconds"]);
        wbsMonitor.UpdateItem(strEchoData, WBSMonitor.MonitorUpdateType.CallbackReceived);

        return;
    }