Hi,
This wont work! :(
ASPX:
REPORT.CS:
The report isn't showing any result.
(but the response.write says 14)
This wont work! :(
ASPX:
protected void Page_Load(object sender, EventArgs e) |
{ |
//Response.Write(TaskBL.GetSimpleReport(PageInfo.CurrentObjectId).Count.ToString()); |
PPS.Report.SimpleTaskReport rep = new SimpleTaskReport(); |
rep.ObjectId = PageInfo.CurrentObjectId; |
ReportViewer1.Report = rep; |
} |
REPORT.CS:
public partial class SimpleTaskReport : Telerik.Reporting.Report |
{ |
public Guid ObjectId { get; set; } |
public SimpleTaskReport() |
{ |
/// <summary> |
/// Required for telerik Reporting designer support |
/// </summary> |
InitializeComponent(); |
TaskBL taskBL = new TaskBL(); |
this.DataSource = taskBL.GetSimpleReport(ObjectId); |
} |
} |
The report isn't showing any result.
(but the response.write says 14)