문제

I was wondering if there is a possibility to add an input field in the RDLC Report definition, so the user can type something before saving the the report.

Is it possible? If so, how?

도움이 되었습니까?

해결책 2

Short answer, NO

RDLC is a file that is designed to be the last part of the report cycle.


BUT, you CAN create a visual-like the report itself, with the Input that you desire, after that, the user can finish it and generate the RDLC

Breed Crumb: Create a page that looks like your report => Add the editable input where you need => Create a button in this "report" (page) => Generate your REAL report.

다른 팁

As @Michel pointed out, RDLC reports are read-only, once generated.

Another Workaround:

Have an input field in your page, plus embed your Report in a Report Viewer control, with a parameter that takes the value of the input field.

Each time the user changes the value of the input field (or presses the some refresh button) then you regenerate the Report and show it again in the Report Viewer.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top