如何将文本框值从一个 Web 表单传递到 xtrareport?

发布于 2024-08-25 14:23:29 字数 178 浏览 7 评论 0原文

我有一个网络表单,其中有一个文本框,用户可以在其中输入数字并从表中提取信息。现在我开发了一个 xtrareport,我必须在其中显示用户在我之前提到的文本框中输入的数据。一切正常,只是我需要将 texbox(form1) 的值传递给报告(form2)。

现在我需要的是如何将文本框值作为参数传递给报表并显示所选号码的报表数据。

I have a web form where I have a textbox in which the user will enter the number and pull the information from the table. Now I have developed a xtrareport, where I have to display the data of which the user enters in that textbox which I mentioned earlier. Everything works fine, only I need to just pass the value of the texbox(form1) to the report (form2).

Now what I need is how to pass the textbox value as a parameter to the report and display the report data of the selected number.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

踏月而来 2024-09-01 14:23:29
  1. 在报表设计器中,您应该创建报表参数并在报表中的任何位置使用它(例如在报表过滤器中)。
  2. 在向用户显示报告之前,您应该在报告实例中找到参数并为其赋值。

这是示例代码:

                        using (var report = new XtraReport())
                        {
                            report.Bands.Add(new DetailBand());
                            report.Parameters.Add(new Parameter { Name = "userName",ParameterType = ParameterType.String});
                            report.FilterString = "USER = userName";
                            report.SaveLayout("test.repx");
                        }
                        using (var report = new XtraReport())
                        {
                            report.LoadLayout("test.repx");
                            report.Parameters.First(p => p.Name == "userName").Value = textBox.Text;
                            report.ShowPreviewDialog();
                        }

通知
这是winform示例。但原理是一样的。例如,通过查询字符串将文本框值传递到 Web 表单也非常简单。

  1. In the Report Designer You should create Report Parameter and use it anywhere in report(for example in report filter).
  2. Before showing report to user you should find parameter in report instance and assign value to it.

here is sample code:

                        using (var report = new XtraReport())
                        {
                            report.Bands.Add(new DetailBand());
                            report.Parameters.Add(new Parameter { Name = "userName",ParameterType = ParameterType.String});
                            report.FilterString = "USER = userName";
                            report.SaveLayout("test.repx");
                        }
                        using (var report = new XtraReport())
                        {
                            report.LoadLayout("test.repx");
                            report.Parameters.First(p => p.Name == "userName").Value = textBox.Text;
                            report.ShowPreviewDialog();
                        }

Notice
It is winform sample. But principles are same. Also it is very simple to pass textbox value to webform via querystring for example.

画尸师 2024-09-01 14:23:29

获取该 textedit 值并通过构造函数传递。

 string oper = "A";
 XtraReport_1 report = new XtraReport_1(oper, Convert.ToInt32(TextEdit1.Text));

 ReportPrintTool tool = new ReportPrintTool(report);
 tool.ShowPreview();

在发生火灾报告时编写此代码。

XtraReport_1 中获取该构造函数并使用它。

public InvoiceReport_1(string oper, int p)
    {
        // TODO: Complete member initialization
        InitializeComponent();
        InvisibleText.Text = p.ToString();
        InvisibleText.Visible = false;

        getOper = oper;

    }

现在您将获得名为“InvisibleText”的 TextEdit 值。

Get that textedit value and pass through constructor.

 string oper = "A";
 XtraReport_1 report = new XtraReport_1(oper, Convert.ToInt32(TextEdit1.Text));

 ReportPrintTool tool = new ReportPrintTool(report);
 tool.ShowPreview();

Write this code in event that where fires report.

In XtraReport_1 get that constructor and use it.

public InvoiceReport_1(string oper, int p)
    {
        // TODO: Complete member initialization
        InitializeComponent();
        InvisibleText.Text = p.ToString();
        InvisibleText.Visible = false;

        getOper = oper;

    }

now you get the value to TextEdit calld "InvisibleText".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文