如何将文本框值从一个 Web 表单传递到 xtrareport?
我有一个网络表单,其中有一个文本框,用户可以在其中输入数字并从表中提取信息。现在我开发了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是示例代码:
通知
这是winform示例。但原理是一样的。例如,通过查询字符串将文本框值传递到 Web 表单也非常简单。
here is sample code:
Notice
It is winform sample. But principles are same. Also it is very simple to pass textbox value to webform via querystring for example.
获取该 textedit 值并通过构造函数传递。
在发生火灾报告时编写此代码。
在
XtraReport_1
中获取该构造函数并使用它。现在您将获得名为“InvisibleText”的 TextEdit 值。
Get that textedit value and pass through constructor.
Write this code in event that where fires report.
In
XtraReport_1
get that constructor and use it.now you get the value to TextEdit calld "InvisibleText".