Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用ReportingService2005 - CreateReport 方法可以在报表服务器上创建报表。但是如何将Hide in list view 复选框的值设置为 true?
我终于明白了:-)如果有人需要它:
var properties = new Property[1]; var hidden = new Property { Name = "Hidden", Value = "True" }; properties[0] = hidden; Warning[] warnings = ReportingService.CreateReport(fileNameWithoutExtension, ssrsFolder, true, fileContents, properties);