Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6950775
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:08:03+00:00 2026-05-27T14:08:03+00:00

How can I display the error message to the page that was returned from

  • 0

How can I display the error message to the page that was returned from the BeginAsyncOperation? The page loads gracefully with no data but the user would not know why? I verified that the error was thrown but not handled in the BeginAsyncOperation.

protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        AddOnPreRenderCompleteAsync(
            new BeginEventHandler(BeginAsyncOperation),
            new EndEventHandler(EndAsyncOperation)
        );
    }
}

private IAsyncResult BeginAsyncOperation(object sender, EventArgs e, AsyncCallback callback, object state)
{
    var t = new ThreadStart(GetData);
    try
    {
        return t.BeginInvoke(callback, null);
    }
    catch (Exception ex)
    {
        this.lblError.Text = ex.Message; 
        this.pnlError.Visible = true;
    }
    return null;
}

private void EndAsyncOperation(IAsyncResult result)
{
    BindData();
    SetControlStates();
}

private void GetData()
{
    try
    {
        throw new Exception("something broke!");
    }
    catch (Exception ex)
    {
        throw ex;
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T14:08:03+00:00Added an answer on May 27, 2026 at 2:08 pm

    I was over-thinking it.

    private IAsyncResult BeginAsyncOperation(object sender, EventArgs e, AsyncCallback callback, object state)
    {
        var t = new ThreadStart(GetData);
        return t.BeginInvoke(callback, null);
    }
    
    private void GetData()
    {
        try
        {
            throw new Exception("something broke!");
        }
        catch (Exception ex)
        {
            this.lblError.Text = ex.Message; 
            this.pnlError.Visible = true;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like add error message to page validation in order to display it
We currently has a page that is used to display a generic error message
how to display error onto another page? I have a form under user folder
Can anyone tell me how I can display a status message like 12 seconds
Possible Duplicate: Is there a tool that can display a SVN repository visually (
Examotion has a player that can display the image for svg files as a
Is there any firefox addon which can display my asp.net page viewstate size.... Any
I'm wondering how I can display the recently created nodes by a user on
I want to format a date object so that I can display strings such
Does a smart textbox control (WinForms) exists that can display a path depending on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.