我有一个 FormView,它有一个作为 WCF 服务对象的数据源绑定。在 WCF 服务中,我有一个 Object PublicationDetail,它有一个属性 List authors;
我想加入列表的内容并在表单视图中打印出来但是我遇到了以下错误:
无法将“System.String[]”类型的对象转换为“System.Collections.Generic.List`1[System.String]”类型。
和代码:
<asp:Label ID="AuthorsLabel" runat="server" Text='<%# String.Join( ",", ((List<string>)Eval("Authors")).ToArray()) %>' />