Telerik Forums
Reporting Forum
0 answers
131 views

I  have created telerik report in web application using Visual studio 2008 and Report viewer version is 

(Telerik.ReportViewer.WebForms, Version=3.0.9.430, )

Its working fine in my lacol system but when i upload into server domain
it will through some error 

http://www.isms.shreema.com/incidents.aspx

 

Parser Error

Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

Parser Error Message: Could not load file or assembly 'Telerik.ReportViewer.WebForms, Version=3.0.9.430, Culture=neutral, PublicKeyToken=a9d7983dfcc261be' or one of its dependencies. The system cannot find the file specified.

Source Error:

Line 1:  <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Incidents.aspx.cs" Inherits="Incidents" %>
Line 2:  
Line 3: <%@ Register Assembly="Telerik.ReportViewer.WebForms, Version=3.0.9.430, Culture=neutral, PublicKeyToken=a9d7983dfcc261be"Line 4:      Namespace="Telerik.ReportViewer.WebForms" TagPrefix="telerik" %>
Line 5:  

My remote server(web hosters) allowed only in frame work 2.0 because when i upload all .cs files into remote server
i got one error in following  namespace(its not supported)

 

using

 

System.Linq;

 

using

 

System.Xml.Linq;

 

 

So i removed that two namspace but i have problem in report viewer how to solve taht version problem

Regards

Abdul

Azees
Top achievements
Rank 1
 asked on 29 Jun 2009
3 answers
407 views
Greetings,

As a parameter i am using a dropdown with organisations. Each organization has settings which i select in a NeeddataSource event for a chart.
When using these settings to update the background color of the header section, set a new picturebox image or use the parameters to fill textboxes in the detail section the report doesn't show these changes.
Only after a click on the refresh button of the reportviewer the changes are shown.

Any ideas how to get this to work?

With regards,

Peter
Steve
Telerik team
 answered on 29 Jun 2009
1 answer
115 views
Hi, I am new to using any reporting suite. Usually I query data from the db and manually parse it out and generate my html layout. I was hoping using a reporting toolset would make things easier.

I've been reading and following along some telerik reporting guides.

It looks like paramaters and filtering do not take place at the db-level and are instead after the data is pulled. This is a big problem for me. I need to use params when i pull the data. I could be pulling a million records if i can't have the report pull only the records for a specific userID and then report on it.

Is there any way to make it work like i expected it to?
Or am i going to have to stick to using a grid?
Steve
Telerik team
 answered on 27 Jun 2009
3 answers
253 views
Hi ,

In a dataset there are more than 10 records, while populating these records to telerik report it displays only one record.
kindly suggest me the options for showing all the records in telerik report.

Regards,
Parthiban.
Steve
Telerik team
 answered on 27 Jun 2009
1 answer
348 views
Goodmorning,

I have a problem with a report involving a subreport section containing some data picked up from a stored procedure.
The subreport data consists of a kind of "invoice detail" section (some items with their description, prices etc).

The problem is that when there are lot of items in the detail section of the subreport, the subreport itself does not maintain the limits of the subreport section declared in the master page (I've already set the KeepTogether property of the subreport to "False") and keeps "growing" in order to contain all the data. This way the data AFTER the subreport section goes on the next page, instead of having a new page with the remaining of the subreport data.

So, the main problem is hot to keep a subreport within the bounds declared in the subreport size?

Thank you,
Best regards,
Marius.
Steve
Telerik team
 answered on 27 Jun 2009
1 answer
270 views
Hi ...
I`ve just came to know about the Telerik Reports.
How to pass sql parameter value in run time in Telerik Reports.

Any help would be greatly appreciated
Regards
Robins


Steve
Telerik team
 answered on 27 Jun 2009
1 answer
164 views
I'm using an object as my data source.  The object has a function that returns another object.  I wish to use a function return value of that returned object as the value in a TextBox, but the report is not happy and shows an exception box pertaining to not being able to find the lower function.  For example, my TextBox value field looks something like this: =GetSubObject().GetValue( p1, p2).  The report would be  complaining "The expression contains undefined function call GetValue."
Is there any way to do this?  I'm guessing a subreport that uses the GetSubObject return value as its data source would be an option?
Chris Gillies
Top achievements
Rank 1
 answered on 26 Jun 2009
1 answer
215 views
Hi .
 This is suriya .,
 sir i have doubt in retriving the next row record and calculating in another field....

Date                        days
4-Jan-2009 0
7-Jan-2009 3
9-Jan-2009 2
10-Jan-2009 1

i need the above answer, but u have the date field only., it is possible or not in teleriks.,
please reply as soon as possible.,

By
Suriya narayanan

Steve
Telerik team
 answered on 26 Jun 2009
1 answer
100 views
Hi ,

I have made the Master /Detail sub report and execute well in my local machine ,however when i publish the code and try to view the Master /Detail report i am not getting the sub report content while i am getting only the master table content at the same time all my reports are executing at local and in publish code i do not understand why this is happening only for Master/Detail subreporting.

I am using the following trial version.

Telerik_Reporting_2008_3_1402_trial

Thanks,
Neeraj.
Steve
Telerik team
 answered on 26 Jun 2009
3 answers
175 views
      SqlConnection connSomsys = new SqlConnection(@"Server=cmdivst004\Jason08;Integrated Security=false;Database=QuoteDB; Persist Security Info=True;User ID=cmdiapp;Password=adiadmin");  
            Telerik.Reporting.Processing.SubReport report3 = (Telerik.Reporting.Processing.SubReport)sender;  
 
            SqlCommand selectCommand;  
            selectCommand = new SqlCommand("sprocgetYears", connSomsys);  
            selectCommand.CommandType = CommandType.StoredProcedure;  
            selectCommand.Parameters.AddWithValue("@ousername_vc", this.ReportParameters["ousername_vc"].Value);  
            SqlDataAdapter adapter = new SqlDataAdapter(selectCommand);  
            DataSet dataSet3 = new DataSet();  
            adapter.Fill(dataSet3);  
            
           //Now I would like to do something like the following but cannot, need help with this part...  
            report3.Table1.DataSource = dataSet3;  
             
I have a subreport that contains a table. I need to be able to set the datasource for this table from within the Parent report code behind. I believe i may need to do something with the Item DataBinding events but am not 100% certain. I am using stored procedures and calling them programmatically. Below is a code snippet where near the bottom of the snippet I need to access the table and its datasource that lives in the subreport. Any help would be greatly appreciated

Jason
Steve
Telerik team
 answered on 26 Jun 2009
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?