Click here to Skip to main content
15,900,725 members
Home / Discussions / Web Development
   

Web Development

 
QuestionHow do I insert my own text into this script? Pin
Madaxe19-Dec-14 19:42
Madaxe19-Dec-14 19:42 
AnswerRe: How do I insert my own text into this script? Pin
Kornfeld Eliyahu Peter9-Dec-14 20:32
professionalKornfeld Eliyahu Peter9-Dec-14 20:32 
AnswerRe: How do I insert my own text into this script? Pin
S Services12-Dec-14 21:08
S Services12-Dec-14 21:08 
QuestionCan i cache all dynamically generated pages and serve them as pure HTML? Pin
Member 112915226-Dec-14 13:19
Member 112915226-Dec-14 13:19 
AnswerRe: Can i cache all dynamically generated pages and serve them as pure HTML? Pin
Anurag Gandhi31-May-15 2:37
professionalAnurag Gandhi31-May-15 2:37 
Questionvb 2010 web form sql control problem Pin
dcof4-Dec-14 10:17
dcof4-Dec-14 10:17 
AnswerRe: vb 2010 web form sql control problem Pin
Richard Deeming4-Dec-14 10:32
mveRichard Deeming4-Dec-14 10:32 
Questionadding jquery at a joomla's module backend code Pin
isengart3-Dec-14 23:04
isengart3-Dec-14 23:04 
QuestionEditing Elements Using Iframe Pin
MadDashCoder3-Dec-14 19:24
MadDashCoder3-Dec-14 19:24 
GeneralMessage Closed Pin
30-Nov-14 2:23
Janak197730-Nov-14 2:23 
GeneralRe: Next milestone in website development Pin
Dave Kreskowiak1-Dec-14 2:36
mveDave Kreskowiak1-Dec-14 2:36 
QuestionLearning & improving web application skills Pin
Angel Hermon27-Nov-14 8:18
Angel Hermon27-Nov-14 8:18 
QuestionPath to CSS Not Working Pin
MadDashCoder24-Nov-14 11:11
MadDashCoder24-Nov-14 11:11 
AnswerRe: Path to CSS Not Working Pin
User 171649224-Nov-14 13:18
professionalUser 171649224-Nov-14 13:18 
GeneralRe: Path to CSS Not Working Pin
MadDashCoder24-Nov-14 16:24
MadDashCoder24-Nov-14 16:24 
AnswerRe: Path to CSS Not Working Pin
MadDashCoder3-Dec-14 18:43
MadDashCoder3-Dec-14 18:43 
QuestionINSPIRATION FOR DESIGN Pin
Member 1122910913-Nov-14 12:16
Member 1122910913-Nov-14 12:16 
AnswerRe: INSPIRATION FOR DESIGN Pin
PIEBALDconsult13-Nov-14 12:41
mvePIEBALDconsult13-Nov-14 12:41 
GeneralRe: INSPIRATION FOR DESIGN Pin
Richard MacCutchan13-Nov-14 22:17
mveRichard MacCutchan13-Nov-14 22:17 
AnswerRe: INSPIRATION FOR DESIGN Pin
Kornfeld Eliyahu Peter13-Nov-14 22:54
professionalKornfeld Eliyahu Peter13-Nov-14 22:54 
AnswerRe: INSPIRATION FOR DESIGN Pin
Nathan Minier14-Nov-14 2:14
professionalNathan Minier14-Nov-14 2:14 
GeneralRe: INSPIRATION FOR DESIGN Pin
Shamim Reza14-Dec-14 4:25
Shamim Reza14-Dec-14 4:25 
AnswerRe: INSPIRATION FOR DESIGN Pin
Rollin Shultz19-Dec-14 5:16
Rollin Shultz19-Dec-14 5:16 
QuestionReport Viewer Configuration Error in RDLC Report Pin
Preety Shah12-Nov-14 3:25
Preety Shah12-Nov-14 3:25 
The Report Viewer Web Control HTTP Handler has not been registered in the application's web.config file. Add <add verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91"> to the system.web/httpHandlers section of the web.config file, or add <add name="ReportViewerWebControlHandler" precondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91"> to the system.webServer/handlers section for Internet Information Services 7 or later.

I am getting the above error while I try to run RDLC report.

The following things I have added to the solution:

1. ReportViewer control on the .aspx page.

XML
<rsweb:ReportViewer ID="ReportViewer2" runat="server" Font-Names="Verdana" Font-Size="8pt" WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt">
                <LocalReport ReportPath="reports\Report1.rdlc">
                    <DataSources>
                        <rsweb:ReportDataSource DataSourceId="SqlDataSource1" Name="DataSet1" />
                    </DataSources>
                </LocalReport>
            </rsweb:ReportViewer>



2. Registered assembly on .aspx page

<%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91" Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %>

3. Added reference Microsoft.ReportViewer.WebForms to the project

4. In web.config tags added are:

XML
<compilation debug="true" targetFramework="4.5">
      <assemblies>
        <!--<add assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91" />
        <add assembly="Microsoft.ReportViewer.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91" />-->
        <add assembly="Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
        <add assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
        <add assembly="Microsoft.ReportViewer.Common, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
      </assemblies>
      <buildProviders>
        <add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91"/>
      </buildProviders>
    </compilation>




Kindly provide the solution to resolve this error of RDLC report.
GeneralRe: Report Viewer Configuration Error in RDLC Report Pin
Sheepings13-Nov-14 4:21
professionalSheepings13-Nov-14 4:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.