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

  • Home
  • SEARCH
  • 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 495179
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T05:34:07+00:00 2026-05-13T05:34:07+00:00

We are having a strange issue with the Visual Studio 2008 ReportViewer control. Specifically,

  • 0

We are having a strange issue with the Visual Studio 2008 ReportViewer control. Specifically, when we have a child control on a page, and the child control itself hosts a report viewer, and the report has a document map, the postback on the show/hide document map button seems to be lost, so the document map never disappears. I played with IPostBackEventHandler and didn’t seem to get anywhere; the ReportViewer itself implements that interface so I didn’t think I cared. Anyway, here’s the code:

Default.aspx:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="ReportViewerDocumentMapButtonStrippedExample._Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div runat="server" id="div">

    </div>
    </form>
</body>
</html>

Default.aspx.cs:

using System;

namespace ReportViewerDocumentMapButtonStrippedExample {
    public partial class _Default : System.Web.UI.Page {
        protected void Page_Load(object sender, EventArgs e) {
        }

        protected override void CreateChildControls() {
            base.CreateChildControls();
            FindControl("div").Controls.Add(new rvControl());
        }
    }
}

rvControl.cs:

using System.Collections.Generic;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using Microsoft.Reporting.WebForms;

namespace ReportViewerDocumentMapButtonStrippedExample {
    public class rvControl : HtmlGenericControl {

        protected override void CreateChildControls() {
            base.CreateChildControls();
            var rvMain = new ReportViewer {
                EnableViewState = true,
                ProcessingMode = ProcessingMode.Remote,
                ShowRefreshButton = false,
                AsyncRendering = true,
                Width = new Unit(100, UnitType.Percentage),
                Height = new Unit(2000, UnitType.Pixel),
                ShowCredentialPrompts = false,
                ID = "viewer",
            };
            rvMain.ServerReport.ReportPath = "/some/report/name";
            Controls.Add(rvMain);
        }

    }
}

Anyone have an idea on this?

  • 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-13T05:34:07+00:00Added an answer on May 13, 2026 at 5:34 am

    Microsoft found the answer for us. Basically, it was some confusion in ReportViewer control and the control lifecycle. The fix is a simple addition to the custom control:

    public override System.Web.UI.ControlCollection Controls {
        get {
            this.EnsureChildControls();
            return base.Controls;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 348k
  • Answers 348k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Figured it out: In each site, under "Site Settings", in… May 14, 2026 at 6:29 am
  • Editorial Team
    Editorial Team added an answer The best way to track this is probably with a… May 14, 2026 at 6:29 am
  • Editorial Team
    Editorial Team added an answer I suggest buying a cheap Atom Mini-ITX board, some of… May 14, 2026 at 6:29 am

Related Questions

Having a strange issue with some C# code - the Getter method for a
I'm having a strange issue with cookie visibility between an authentication servlet and our
I work on an open source product called EVEMon written in C# targeting the
We are using the ASP.NET 1.1 version of dtSearch and are having an issue
We have a bunch of VB6 applications that access two different database servers (both

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.