Hello Bill,
I think VS.net 2005 uses Whidbey which may have different behavior than
.net 1.1. Did you try on a .net 1.1 server to test?
Also, the example "Employee Sales Summary" have different parameters, we
could select/input different paramter, and click "View report" to show the
report.
Best Regards,
Peter Yang
MCSE2000/2003, MCSA, MCDBA
Microsoft Online Partner Support
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
| From: "Bill Lane" <SirBillofLanenet@online.nospam>
| References: <#Fy$RQWkFHA.2852@TK2MSFTNGP15.phx.gbl>
<D61CEDE0-E24B-4DF6-9A5F-44EFE7129A86@microsoft.com>
<eGq1y2XkFHA.2484@TK2MSFTNGP15.phx.gbl>
<xqTW7UakFHA.3472@TK2MSFTNGXA01.phx.gbl>
<uf#0TkxkFHA.572@TK2MSFTNGP15.phx.gbl>
<UM8AFFzkFHA.940@TK2MSFTNGXA01.phx.gbl>
<#cNMl0#kFHA.764@TK2MSFTNGP14.phx.gbl>
<nS3v$vBlFHA.3120@TK2MSFTNGXA01.phx.gbl>
| Subject: Re: I can not get ReportViewer to display a server report
| Date: Fri, 29 Jul 2005 10:55:20 -0500
| Lines: 429
| Organization: W Lane Enterprises
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| Message-ID: <Oz2WuXFlFHA.1968@TK2MSFTNGP14.phx.gbl>
| Newsgroups: microsoft.public.sqlserver.reportingsvcs
| NNTP-Posting-Host: bill-lane.net 67.66.163.9
| Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP14.phx.gbl
| Xref: TK2MSFTNGXA01.phx.gbl microsoft.public.sqlserver.reportingsvcs:49251
| X-Tomcat-NG: microsoft.public.sqlserver.reportingsvcs
|
| I am using the june version of vs2005 standard. I looks like your example
is
| using vs2003. Please confirm your test version.
[quoted text, click to view] | "Peter Yang [MSFT]" <petery@online.microsoft.com> wrote in message
| news:nS3v$vBlFHA.3120@TK2MSFTNGXA01.phx.gbl...
| > Hello Bill,
| >
| > It seems a issue inside the report. If you browse the report directly
from
| > report manager, does the issue occur? If you use a different report with
| > parameters, does the issue persists?
| >
| > I tried to reproduce the issue on my side to not avail. The following
are
| > the .aspx and aspx.vb file I used to test. I used the sample report
| > included in reporting service.
| >
| > <%@ Register TagPrefix="cc1"
| > Namespace="Microsoft.Samples.ReportingServices" Assembly="ReportViewer"
%>
| > <%@ Page Language="vb" AutoEventWireup="false"
| > Codebehind="WebForm1.aspx.vb" Inherits="WebApplication1.WebForm1"%>
| > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
| > <HTML>
| > <HEAD>
| > <title>WebForm1</title>
| > <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
| > <meta content="Visual Basic .NET 7.1" name="CODE_LANGUAGE">
| > <meta content="JavaScript" name="vs_defaultClientScript">
| > <meta content="
http://schemas.microsoft.com/intellisense/ie5" | > name="vs_targetSchema">
| > </HEAD>
| > <body MS_POSITIONING="GridLayout">
| > <form id="Form1" method="post" runat="server">
| > <cc1:reportviewer id="ReportViewer1" style="Z-INDEX: 101; LEFT: 116px;
| > POSITION: absolute; TOP: 8px"
| > runat="server" Format="HTMLOWC" ReportPath="/SampleReports/Employee
| > Sales Summary" ServerUrl=" http://localhost/reportserver"
| > Width="570px" Height="260px"></cc1:reportviewer>
| > <asp:dropdownlist id="DropDownList1" style="Z-INDEX: 102; LEFT: 240px;
| > POSITION: absolute; TOP: 320px"
| > runat="server" AutoPostBack="True"></asp:dropdownlist></form>
| > </body>
| > </HTML>
| >
| >
| >
| >
| > Public Class WebForm1
| > Inherits System.Web.UI.Page
| >
| > #Region " Web Form Designer Generated Code "
| >
| > 'This call is required by the Web Form Designer.
| > <System.Diagnostics.DebuggerStepThrough()> Private Sub
| > InitializeComponent()
| >
| > End Sub
| > Protected WithEvents ReportViewer1 As
| > Microsoft.Samples.ReportingServices.ReportViewer
| > Protected WithEvents DropDownList1 As
| > System.Web.UI.WebControls.DropDownList
| >
| > 'NOTE: The following placeholder declaration is required by the Web
| > Form Designer.
| > 'Do not delete or move it.
| > Private designerPlaceholderDeclaration As System.Object
| >
| > Private Sub Page_Init(ByVal sender As System.Object, ByVal e As
| > System.EventArgs) Handles MyBase.Init
| > 'CODEGEN: This method call is required by the Web Form Designer
| > 'Do not modify it using the code editor.
| > InitializeComponent()
| > End Sub
| >
| > #End Region
| >
| > Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
| > System.EventArgs) Handles MyBase.Load
| > 'Put user code to initialize the page here
| > If Not IsPostBack Then
| >
| > DropDownList1.Items.Add("/SampleReports/Employee Sales
| > Summary")
| > DropDownList1.Items.Add("/SampleReports/Matrix")
| > DropDownList1.Items.Add("/SampleReports/Report4")
| > DropDownList1.Items.Add("/SampleReports/Report2")
| > End If
| >
| >
| > End Sub
| >
| > Private Sub DropDownList1_SelectedIndexChanged(ByVal sender As
Object,
| > ByVal e As System.EventArgs) Handles DropDownList1.SelectedIndexChanged
| > Dim i As Integer
| > i = DropDownList1.SelectedIndex()
| >
| > ReportViewer1.ReportPath = DropDownList1.Items(i).Value
| > End Sub
| > End Class
| >
| > Regards,
| >
| > Peter Yang
| > MCSE2000/2003, MCSA, MCDBA
| > Microsoft Online Partner Support
| >
| > When responding to posts, please "Reply to Group" via your newsreader so
| > that others may learn and benefit from your issue.
| >
| > =====================================================
| >
| >
| > This posting is provided "AS IS" with no warranties, and confers no
| > rights.
| >
| >
| > --------------------
| > | From: "Bill Lane" <SirBillofLanenet@online.nospam>
| > | References: <#Fy$RQWkFHA.2852@TK2MSFTNGP15.phx.gbl>
| > <D61CEDE0-E24B-4DF6-9A5F-44EFE7129A86@microsoft.com>
| > <eGq1y2XkFHA.2484@TK2MSFTNGP15.phx.gbl>
| > <xqTW7UakFHA.3472@TK2MSFTNGXA01.phx.gbl>
| > <uf#0TkxkFHA.572@TK2MSFTNGP15.phx.gbl>
| > <UM8AFFzkFHA.940@TK2MSFTNGXA01.phx.gbl>
| > | Subject: Re: I can not get ReportViewer to display a server report
| > | Date: Thu, 28 Jul 2005 22:24:33 -0500
| > | Lines: 260
| > | Organization: W Lane Enterprises
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| > | X-RFC2646: Format=Flowed; Original
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| > | Message-ID: <#cNMl0#kFHA.764@TK2MSFTNGP14.phx.gbl>