Telerik Reporting Query String Parameters Tutorial

preview_player
Показать описание
How to use query string parameters in Telerik Reporting. The product documentation doesn't cover it, so that is why I made this video.

if (!IsPostBack)
{
Reports.QueryStringReport report = new Reports.QueryStringReport();

if (Request["zipCode"] != null)
{
int zipCode = 0;

if (int.TryParse(Request["zipCode"].ToString(), out zipCode))
report.ReportParameters[0].Value = zipCode;

}
TestReportViewer.ReportSource = report;
}
Рекомендации по теме
Комментарии
Автор

David greetings,

I've seen your video and I found very iteresante and simple, I wonder if you could share with me the code for this project developed in order to have a guide in creating reports with parameters with telerik, I have seen documentation of paltaforma of telerik but not I think as clearly as you.

I'm working on a priyecto in vb.net and telerik but I'm at the stage of reports but I have not been with them, I hope you can help me.

in advance thank you very much.

pacmitan
welcome to shbcf.ru