Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello
i made a simple web application in vs2008 with one internet page and placed MS ReportViewer on that but it is not showing any data. it is all blank. nothing is there . it is showing that control but not the text/data in it.
and in firefox it shows the control but below that it shows

HTTP Error 404.0 - Not Found
The resource you are looking for has been removed, had its name changed, or is temporarily unavailable
Posted
Updated 31-Aug-12 8:37am
v2
Comments
[no name] 31-Aug-12 14:33pm    
Did you create a report to view in the report viewer?

1 solution

i had solved
just had to add following code


XML
<system.webServer>
    <handlers>
    <add name="ReportViewerWebControl" path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
    </handlers>
</system.webServer>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900